diff --git a/animedex/diag/selftest.py b/animedex/diag/selftest.py index a3d2cd3..4ce5383 100644 --- a/animedex/diag/selftest.py +++ b/animedex/diag/selftest.py @@ -75,6 +75,7 @@ "animedex.entry", "animedex.entry.aggregate", "animedex.entry.cli", + "animedex.entry.enhance", "animedex.entry.search", "animedex.entry.show", "animedex.diag", @@ -112,6 +113,9 @@ "animedex.mcp", "animedex.mcp.tool_decorator", "animedex.mcp.register", + "animedex.enhance", + "animedex.enhance._heuristics", + "animedex.enhance.models", "animedex.agg", "animedex.agg._fanout", "animedex.agg.calendar", @@ -415,6 +419,14 @@ def _smoke_jaconv() -> None: assert jaconv.hira2kata("\u305d\u30fc\u3069\u3042\u30fc\u3068") == "\u30bd\u30fc\u30c9\u30a2\u30fc\u30c8" +def _smoke_opencc() -> None: + """Smoke-test OpenCC converter dictionaries.""" + from opencc import OpenCC + + assert OpenCC("s2t").convert("\u846c\u9001\u7684\u8299\u8389\u83b2") == "\u846c\u9001\u7684\u8299\u8389\u84ee" + assert OpenCC("t2s").convert("\u846c\u9001\u7684\u8299\u8389\u84ee") == "\u846c\u9001\u7684\u8299\u8389\u83b2" + + def _smoke_unidecode() -> None: """Smoke-test Unidecode transliteration tables.""" from unidecode import unidecode @@ -442,6 +454,7 @@ def _smoke_tzdata() -> None: ("jq", _smoke_jq), ("anyascii", _smoke_anyascii), ("jaconv", _smoke_jaconv), + ("opencc_python_reimplemented", _smoke_opencc), ("unidecode", _smoke_unidecode), ("tzdata", _smoke_tzdata), ) diff --git a/animedex/enhance/__init__.py b/animedex/enhance/__init__.py new file mode 100644 index 0000000..66a97e4 --- /dev/null +++ b/animedex/enhance/__init__.py @@ -0,0 +1,484 @@ +"""Backend-targeted search-query enhancement. + +The public :func:`suggest` API is a local, stateless assistant for +``animedex search``. It does not execute searches and does not inspect +fixtures or caches at runtime. Instead, it combines deterministic query +rewrite heuristics with source-specific search profiles, so callers get +a small set of source-specific variants instead of a flat bag of every +possible rewrite. +""" + +from __future__ import annotations + +from dataclasses import dataclass +from typing import Dict, List, Optional, Tuple + +from animedex.agg._type_routes import backends_for_type, validate_entity_type +from animedex.models.common import ApiError + +from ._heuristics import build_variants, looks_cjk, looks_han, looks_hangul, looks_japanese, looks_latin +from .models import EnhanceResult, EnhanceSuggestion, EnhanceTarget + + +@dataclass(frozen=True) +class _TargetProfile: + """Static empirical profile for one aggregate type/source pair. + + :ivar entity_type: Aggregate entity type. + :vartype entity_type: str or None + :ivar source: Backend identifier. + :vartype source: str + :ivar accepts: What the backend search field accepts. + :vartype accepts: str + :ivar guidance: Source-specific strategy for this cell. + :vartype guidance: str + :ivar evidence: Compact search-eval summary. + :vartype evidence: str + :ivar variant_ids: Source-targeted variant ids to try before + generic cleanup. + :vartype variant_ids: tuple[str, ...] + :ivar allow_script_fallback: Whether CJK transliteration fallbacks + are relevant for this target. + :vartype allow_script_fallback: bool + """ + + entity_type: Optional[str] + source: str + accepts: str + guidance: str + evidence: str + variant_ids: Tuple[str, ...] + allow_script_fallback: bool = True + + +_GENERIC_PROFILE = _TargetProfile( + entity_type=None, + source="generic", + accepts="Plain text search query; pass --type for backend-specific measured guidance.", + guidance="Use raw first, then only deterministic script or structural cleanup variants that change the string.", + evidence="Local deterministic cleanup only; no backend selected.", + variant_ids=( + "strip_parenthetical", + "strip_dash_suffix", + "first_token", + "romaji_to_katakana", + "zh_simplified", + "zh_traditional", + "zh_taiwan", + "zh_hong_kong", + "hangul_latin", + "han_latin", + ), +) + +_GENERIC_CLEANUP_IDS = ("nfkc", "jaconv_norm", "lowercase_strip_punct") +_JAPANESE_SCRIPT_IDS = ("jaconv_norm", "hira2kata", "kata2hira") +_CHINESE_SCRIPT_IDS = ("zh_simplified", "zh_traditional") +_LATIN_ROMAJI_IDS = ("romaji_to_katakana",) + +_TARGET_PROFILES: Dict[Tuple[str, str], _TargetProfile] = { + ("anime", "anilist"): _TargetProfile( + "anime", + "anilist", + "AniList media search text; titles, native titles, and synonyms are searchable.", + "Use raw first; punctuation cleanup and Chinese script folding are the measured low-noise fallbacks.", + "Anime100 multilingual strict eval: raw 265/523, raw+enhance 305/523, strict rescue +40; no Japanese/Hangul romanization rescue was measured.", + (), + ), + ("anime", "ann"): _TargetProfile( + "anime", + "ann", + "ANN encyclopedia title substring search.", + "ANN is the weakest multilingual anime search cell; use exact raw and punctuation cleanup only.", + "Anime100 multilingual strict eval: raw 66/523, raw+enhance 79/523, strict rescue +13; CJK raw mostly returned zero rows.", + (), + ), + ("anime", "jikan"): _TargetProfile( + "anime", + "jikan", + "Jikan anime search q parameter, backed by MyAnimeList title search.", + "Raw is strong; punctuation cleanup and Chinese script folding cover the measured misses without broad lead-token probes.", + "Anime100 multilingual strict eval: raw 314/523, raw+enhance 327/523, strict rescue +13.", + (), + ), + ("anime", "kitsu"): _TargetProfile( + "anime", + "kitsu", + "Kitsu anime filter[text] search over title fields.", + "Raw is good for English and Japanese but weak for Korean and Chinese; use only measured cleanup and script folds.", + "Anime100 multilingual strict eval: raw 231/523, raw+enhance 243/523, strict rescue +12.", + (), + ), + ("anime", "shikimori"): _TargetProfile( + "anime", + "shikimori", + "Shikimori anime search text accepted by the anonymous REST catalogue.", + "Raw is strong for English and Japanese; punctuation cleanup and Chinese script folding are the measured fallbacks.", + "Anime100 multilingual strict eval: raw 309/523, raw+enhance 324/523, strict rescue +15.", + (), + ), + ("manga", "anilist"): _TargetProfile( + "manga", + "anilist", + "AniList manga media search text; edition annotations can suppress matches.", + "Strip bracketed edition labels first, then try the lead token for long annotated manga titles.", + "50-seed eval: raw hit 18/33; first_token rescued 13 raw misses; bracket stripping is targeted at annotation-suffixed titles.", + ("strip_parenthetical", "strip_dash_suffix", "first_token"), + ), + ("manga", "jikan"): _TargetProfile( + "manga", + "jikan", + "Jikan manga search q parameter, backed by MyAnimeList manga search.", + "Raw is already strong; keep fallback advice to syntax cleanup unless the caller has aliases.", + "50-seed eval: raw hit 31/33; pure local variants added no broad win beyond cleanup.", + (), + ), + ("manga", "kitsu"): _TargetProfile( + "manga", + "kitsu", + "Kitsu manga filter[text] search over title fields.", + "Bracket stripping and lead-token queries are useful when manga titles include release annotations.", + "50-seed eval: raw hit 25/33; first_token rescued 3 raw misses; bracket stripping is weaker but relevant.", + ("strip_parenthetical", "first_token"), + ), + ("manga", "mangadex"): _TargetProfile( + "manga", + "mangadex", + "MangaDex manga title search.", + "Raw title search is strong; lead-token fallback is only for noisy titles with subtitles or annotations.", + "50-seed eval: raw hit 31/33; first_token rescued 1 raw miss.", + ("first_token",), + ), + ("manga", "shikimori"): _TargetProfile( + "manga", + "shikimori", + "Shikimori manga search text accepted by the anonymous REST catalogue.", + "Try a lead-token query when long manga titles include extra descriptors.", + "50-seed eval: raw hit 26/33; first_token rescued 3 raw misses.", + ("first_token",), + ), + ("character", "anilist"): _TargetProfile( + "character", + "anilist", + "AniList character name search.", + "Try the given-name or family-name lead token when a full character name misses.", + "50-seed eval: raw hit 37/50; first_token rescued 2 raw misses.", + ("first_token",), + ), + ("character", "jikan"): _TargetProfile( + "character", + "jikan", + "Jikan character search q parameter.", + "Raw character names were reliable in the eval; use cleanup only for punctuation or width issues.", + "50-seed eval: raw hit 48/50; no pure local rescue measured.", + (), + ), + ("character", "kitsu"): _TargetProfile( + "character", + "kitsu", + "Kitsu character filter[text] search.", + "Kitsu character search is noisy; first-token can rescue some full-name misses.", + "50-seed eval: raw hit 22/50; first_token rescued 2 raw misses.", + ("first_token",), + ), + ("character", "shikimori"): _TargetProfile( + "character", + "shikimori", + "Shikimori character search text accepted by the anonymous REST catalogue.", + "Raw character names were reliable in the eval; use cleanup only for punctuation or width issues.", + "50-seed eval: raw hit 47/50; no pure local rescue measured.", + (), + ), + ("person", "anilist"): _TargetProfile( + "person", + "anilist", + "AniList staff name search.", + "Raw staff names are the useful query; first-token was not a measured rescue for this source.", + "50-seed eval: raw hit 21/24; no pure local rescue measured.", + (), + ), + ("person", "jikan"): _TargetProfile( + "person", + "jikan", + "Jikan people search q parameter.", + "Try the lead token when a full person name contains ordering or punctuation that MyAnimeList misses.", + "50-seed eval: raw hit 18/24; first_token rescued 2 raw misses.", + ("first_token",), + ), + ("person", "kitsu"): _TargetProfile( + "person", + "kitsu", + "Kitsu people filter[text] search.", + "The measured Kitsu person cell returned no usable hits; keep only raw and cleanup variants.", + "50-seed eval: raw hit 0/24; no pure local rescue measured.", + (), + ), + ("person", "shikimori"): _TargetProfile( + "person", + "shikimori", + "Shikimori people search text accepted by the anonymous REST catalogue.", + "Raw is strong; first-token can help when a full person name misses.", + "50-seed eval: raw hit 23/24; first_token rescued 1 raw miss.", + ("first_token",), + ), + ("studio", "anilist"): _TargetProfile( + "studio", + "anilist", + "AniList studio name search.", + "Studio search did not benefit from query rewrites in the eval; use raw plus cleanup.", + "50-seed eval: raw hit 12/19; no pure local rescue measured.", + (), + allow_script_fallback=False, + ), + ("studio", "jikan"): _TargetProfile( + "studio", + "jikan", + "Jikan producer search q parameter.", + "Producer search was already exact for measured seeds; use raw plus cleanup.", + "50-seed eval: raw hit 19/19; no pure local rescue measured.", + (), + allow_script_fallback=False, + ), + ("studio", "kitsu"): _TargetProfile( + "studio", + "kitsu", + "Kitsu producers list filtered locally by animedex.", + "The backend route is a local filter over producer rows; rewrites did not improve measured recall.", + "50-seed eval: raw hit 8/19; no pure local rescue measured.", + (), + allow_script_fallback=False, + ), + ("studio", "shikimori"): _TargetProfile( + "studio", + "shikimori", + "Shikimori studios list filtered locally by animedex.", + "The local filter already handled measured studio seeds; use raw plus cleanup.", + "50-seed eval: raw hit 19/19; no pure local rescue measured.", + (), + allow_script_fallback=False, + ), + ("publisher", "shikimori"): _TargetProfile( + "publisher", + "shikimori", + "Shikimori publishers list filtered locally by animedex.", + "Publisher search was exact in the eval; do not fan out speculative rewrites unless cleanup changes the query.", + "50-seed eval: raw hit 50/50; no pure local rescue measured.", + (), + allow_script_fallback=False, + ), +} + +_RESCUE_NOTES: Dict[Tuple[str, str, str], str] = { + ("anime", "anilist", "first_token"): "anime/anilist: rescued 3 raw misses in the 50-seed eval.", + ("anime", "ann", "first_token"): "anime/ann: rescued 14 raw misses in the 50-seed eval.", + ("anime", "jikan", "first_token"): "anime/jikan: rescued 1 raw miss in the 50-seed eval.", + ("anime", "kitsu", "first_token"): "anime/kitsu: rescued 1 raw miss in the 50-seed eval.", + ("anime", "shikimori", "first_token"): "anime/shikimori: rescued 1 raw miss in the 50-seed eval.", + ( + "manga", + "anilist", + "strip_parenthetical", + ): "manga/anilist: targeted at annotation-suffixed titles such as edition labels.", + ("manga", "anilist", "strip_dash_suffix"): "manga/anilist: targeted at subtitle suffixes after '-' or ':'.", + ("manga", "anilist", "first_token"): "manga/anilist: rescued 13 raw misses in the 50-seed eval.", + ( + "manga", + "kitsu", + "strip_parenthetical", + ): "manga/kitsu: same annotation pattern as AniList, with weaker measured effect.", + ("manga", "kitsu", "first_token"): "manga/kitsu: rescued 3 raw misses in the 50-seed eval.", + ("manga", "mangadex", "first_token"): "manga/mangadex: rescued 1 raw miss in the 50-seed eval.", + ("manga", "shikimori", "first_token"): "manga/shikimori: rescued 3 raw misses in the 50-seed eval.", + ("character", "anilist", "first_token"): "character/anilist: rescued 2 raw misses in the 50-seed eval.", + ("character", "kitsu", "first_token"): "character/kitsu: rescued 2 raw misses in the 50-seed eval.", + ("person", "jikan", "first_token"): "person/jikan: rescued 2 raw misses in the 50-seed eval.", + ("person", "shikimori", "first_token"): "person/shikimori: rescued 1 raw miss in the 50-seed eval.", +} + +_GENERIC_NOTES = { + "raw": "baseline", + "nfkc": "accepted anywhere plain text search is accepted when input uses full-width forms.", + "jaconv_norm": "accepted anywhere Japanese plain text search is accepted when input mixes width forms.", + "hira2kata": "Japanese kana fold; useful only for kana-only input after raw/native-title search misses.", + "kata2hira": "Kana fallback; useful only after raw/native-title search misses.", + "romaji_to_katakana": "Romanized Japanese to katakana; emitted only when conversion leaves no Latin residue.", + "zh_simplified": "Chinese Simplified fold for backends whose title index stores Simplified text.", + "zh_traditional": "Chinese Traditional fold for backends whose title index stores Traditional text.", + "zh_taiwan": "Taiwan Traditional fold for phrase-level OpenCC differences.", + "zh_hong_kong": "Hong Kong Traditional fold for phrase-level OpenCC differences.", + "hangul_latin": "Hangul romanization fallback; useful only for sources that do not index Hangul well.", + "han_latin": "Han romanization fallback; use only when no backend-specific CJK guidance is available.", + "unidecode": "Alternative CJK Latin transliteration via unidecode; use late because it is not Japanese-context romanization.", + "lowercase_strip_punct": "cleanup fallback for accidental punctuation and case noise.", +} + + +def _source_list(entity_type: Optional[str], source: Optional[str]) -> List[_TargetProfile]: + if entity_type is None: + if source is not None and source.strip(): + raise ApiError("--source requires --type so the backend allowlist is unambiguous", reason="bad-args") + return [_GENERIC_PROFILE] + + selected_type = validate_entity_type(entity_type) + available = list(backends_for_type(selected_type)) + if source is None or not source.strip(): + wanted = available + else: + wanted = [part.strip() for part in source.split(",") if part.strip()] + unknown = [name for name in wanted if name not in available] + if unknown: + raise ApiError( + f"unknown source(s): {', '.join(unknown)}; supported sources: {', '.join(available)}", + backend="enhance", + reason="bad-args", + ) + return [_TARGET_PROFILES[(selected_type, name)] for name in available if name in wanted] + + +def _variant_ids_for(profile: _TargetProfile, query: str) -> Tuple[str, ...]: + ordered = ["raw"] + if profile.entity_type is None: + ordered.extend(profile.variant_ids) + elif not looks_cjk(query): + ordered.extend(profile.variant_ids) + if profile.entity_type in {"anime", "manga"} and profile.source != "ann" and looks_latin(query): + ordered.extend(_LATIN_ROMAJI_IDS) + if profile.entity_type != "anime" or not looks_cjk(query): + ordered.extend(_GENERIC_CLEANUP_IDS) + if profile.allow_script_fallback and profile.entity_type in {"anime", "manga"}: + if looks_japanese(query): + ordered.append("jaconv_norm") + if not looks_han(query): + ordered.extend(_JAPANESE_SCRIPT_IDS) + elif looks_han(query) and not looks_hangul(query): + if profile.source != "ann": + ordered.extend(_CHINESE_SCRIPT_IDS) + seen = set() + out = [] + for variant_id in ordered: + if variant_id not in seen: + seen.add(variant_id) + out.append(variant_id) + return tuple(out) + + +def _notes_for(profile: _TargetProfile, variant_id: str) -> List[str]: + if variant_id == "raw": + return ["baseline"] + notes = [] + note = _RESCUE_NOTES.get((profile.entity_type or "", profile.source, variant_id)) + if note: + notes.append(note) + generic = _GENERIC_NOTES.get(variant_id) + if generic: + notes.append(generic) + return notes + + +def _target_for(profile: _TargetProfile, query: str, *, limit_per_source: Optional[int]) -> EnhanceTarget: + variants = build_variants(query) + suggestions: List[EnhanceSuggestion] = [] + ordered_variant_ids = list(_variant_ids_for(profile, query)) + for variant_id in ordered_variant_ids: + variant = variants.get(variant_id) + if variant is None: + continue + suggestions.append( + EnhanceSuggestion( + variant_id=variant.variant_id, + query=variant.query, + rationale=variant.rationale, + est_rescue_on=_notes_for(profile, variant_id), + ) + ) + if limit_per_source is not None and len(suggestions) >= limit_per_source: + break + return EnhanceTarget( + entity_type=profile.entity_type, + source=profile.source, + accepts=profile.accepts, + guidance=profile.guidance, + evidence=profile.evidence, + suggestions=suggestions, + ) + + +def suggest( + query: str, + *, + entity_type: Optional[str] = None, + source: Optional[str] = None, + limit_per_source: Optional[int] = None, +) -> EnhanceResult: + """Suggest backend-targeted query variants for ``query``. + + The function is pure and offline. It validates the requested + aggregate type/source pair, then emits a small ordered suggestion + group for each selected backend using the empirical profile for + that cell. + + :param query: Free-text search query. + :type query: str + :param entity_type: Optional aggregate type such as ``"anime"`` + or ``"manga"``. When omitted, only generic + cleanup advice is returned. + :type entity_type: str or None + :param source: Optional comma-separated backend allowlist. Requires + ``entity_type`` because backend support depends on + the selected aggregate type. + :type source: str or None + :param limit_per_source: Optional cap on suggestions per source, + including the raw baseline. + :type limit_per_source: int or None + :return: Structured enhance result. + :rtype: EnhanceResult + :raises ApiError: When the query is blank, the type/source pair is + invalid, or ``limit_per_source`` is less than 1. + """ + cleaned = " ".join(query.strip().split()) + if not cleaned: + raise ApiError("query must not be blank", backend="enhance", reason="bad-args") + if limit_per_source is not None and limit_per_source < 1: + raise ApiError("limit_per_source must be >= 1", backend="enhance", reason="bad-args") + profiles = _source_list(entity_type, source) + selected_type = validate_entity_type(entity_type) if entity_type is not None else None + targets = [_target_for(profile, cleaned, limit_per_source=limit_per_source) for profile in profiles] + return EnhanceResult(input=cleaned, entity_type=selected_type, source=source, targets=targets) + + +def selftest() -> bool: + """Smoke-test targeted enhance advice. + + Confirms the two highest-risk advice paths: manga annotation + stripping for AniList and Japanese-safe CJK fallback generation for anime search. + The smoke stays entirely offline. + + :return: ``True`` on success. + :rtype: bool + """ + manga = suggest("Chainsaw Man (Official Colored)", entity_type="manga", source="anilist") + ids = [item.variant_id for item in manga.targets[0].suggestions] + assert ids[:2] == ["raw", "strip_parenthetical"] + cjk = suggest("葬送のフリーレン", entity_type="anime", source="jikan") + cjk_ids = {item.variant_id for item in cjk.targets[0].suggestions} + assert cjk_ids == {"raw"} + ann = suggest("葬送のフリーレン", entity_type="anime", source="ann") + ann_ids = {item.variant_id for item in ann.targets[0].suggestions} + assert ann_ids == {"raw"} + assert "han_latin" not in cjk_ids + assert "unidecode" not in cjk_ids + zh = suggest("葬送的芙莉莲", entity_type="anime", source="jikan") + zh_ids = {item.variant_id for item in zh.targets[0].suggestions} + assert "zh_traditional" in zh_ids + ko = suggest("장송의 프리렌", entity_type="anime", source="ann") + ko_ids = {item.variant_id for item in ko.targets[0].suggestions} + assert ko_ids == {"raw"} + return True + + +__all__ = [ + "EnhanceResult", + "EnhanceSuggestion", + "EnhanceTarget", + "suggest", +] diff --git a/animedex/enhance/_heuristics.py b/animedex/enhance/_heuristics.py new file mode 100644 index 0000000..4fe4f28 --- /dev/null +++ b/animedex/enhance/_heuristics.py @@ -0,0 +1,451 @@ +"""Pure search-query rewrite heuristics for :mod:`animedex.enhance`. + +The functions in this module do not know about backends. They build a +deduplicated variant map from one input string; the public +:func:`animedex.enhance.suggest` function later selects a source-specific +subset from that map. +""" + +from __future__ import annotations + +import re +import unicodedata +from dataclasses import dataclass +from typing import Dict, Optional + +import jaconv +from anyascii import anyascii +from opencc import OpenCC +from unidecode import unidecode + + +@dataclass(frozen=True) +class QueryVariant: + """One deterministic rewrite of a search query. + + :ivar variant_id: Stable rewrite identifier. + :vartype variant_id: str + :ivar query: Rewritten query string. + :vartype query: str + :ivar rationale: Source-independent explanation of the rewrite. + :vartype rationale: str + """ + + variant_id: str + query: str + rationale: str + + +_HAN_RE = re.compile(r"[㐀-鿿]") +_HANGUL_RE = re.compile(r"[가-힯]") +_KANA_RE = re.compile(r"[぀-ヿ]") +_CJK_RE = re.compile(r"[぀-ヿ㐀-鿿가-힯]") +_LATIN_RE = re.compile(r"[A-Za-z]") +_ROMAJI_ALLOWED_CHARS = frozenset("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 .,'!?:;\"-_/()[]{}&+") +_PAREN_OR_TILDE_SUFFIX = re.compile(r"\s*(?:\([^)]*\)|~[^~]*~|【[^】]*】|\[[^\]]*\])\s*$") +_DASH_OR_COLON_SUFFIX = re.compile(r"\s*[-–—:]\s*[^-–—:]+\s*$") +_TOKEN_BREAK_RE = re.compile(r"[\s .,!?:;\"'\-_/()\[\]{}【】~]+") +_NON_WORD_RE = re.compile(r"[\W_]+", re.UNICODE) +_ROMAJI_TOKEN_RE = re.compile(r"[a-z']+|[^a-z']+") +_OPENCC_CONVERTERS: Dict[str, OpenCC] = {} +_ROMAJI_YOON = { + "kya": "キャ", + "kyu": "キュ", + "kyo": "キョ", + "gya": "ギャ", + "gyu": "ギュ", + "gyo": "ギョ", + "sha": "シャ", + "shu": "シュ", + "sho": "ショ", + "sya": "シャ", + "syu": "シュ", + "syo": "ショ", + "ja": "ジャ", + "ju": "ジュ", + "jo": "ジョ", + "jya": "ジャ", + "jyu": "ジュ", + "jyo": "ジョ", + "cha": "チャ", + "chu": "チュ", + "cho": "チョ", + "tya": "チャ", + "tyu": "チュ", + "tyo": "チョ", + "nya": "ニャ", + "nyu": "ニュ", + "nyo": "ニョ", + "hya": "ヒャ", + "hyu": "ヒュ", + "hyo": "ヒョ", + "bya": "ビャ", + "byu": "ビュ", + "byo": "ビョ", + "pya": "ピャ", + "pyu": "ピュ", + "pyo": "ピョ", + "mya": "ミャ", + "myu": "ミュ", + "myo": "ミョ", + "rya": "リャ", + "ryu": "リュ", + "ryo": "リョ", +} +_ROMAJI_SYLLABLES = { + "shi": "シ", + "chi": "チ", + "tsu": "ツ", + "si": "シ", + "ti": "チ", + "tu": "ツ", + "fu": "フ", + "hu": "フ", + "ji": "ジ", + "zi": "ジ", + "zu": "ズ", + "a": "ア", + "i": "イ", + "u": "ウ", + "e": "エ", + "o": "オ", + "ka": "カ", + "ki": "キ", + "ku": "ク", + "ke": "ケ", + "ko": "コ", + "ga": "ガ", + "gi": "ギ", + "gu": "グ", + "ge": "ゲ", + "go": "ゴ", + "sa": "サ", + "su": "ス", + "se": "セ", + "so": "ソ", + "za": "ザ", + "ze": "ゼ", + "zo": "ゾ", + "ta": "タ", + "te": "テ", + "to": "ト", + "da": "ダ", + "de": "デ", + "do": "ド", + "na": "ナ", + "ni": "ニ", + "nu": "ヌ", + "ne": "ネ", + "no": "ノ", + "ha": "ハ", + "hi": "ヒ", + "he": "ヘ", + "ho": "ホ", + "ba": "バ", + "bi": "ビ", + "bu": "ブ", + "be": "ベ", + "bo": "ボ", + "pa": "パ", + "pi": "ピ", + "pu": "プ", + "pe": "ペ", + "po": "ポ", + "ma": "マ", + "mi": "ミ", + "mu": "ム", + "me": "メ", + "mo": "モ", + "ya": "ヤ", + "yu": "ユ", + "yo": "ヨ", + "ra": "ラ", + "ri": "リ", + "ru": "ル", + "re": "レ", + "ro": "ロ", + "wa": "ワ", + "wo": "ヲ", +} + + +def looks_cjk(value: Optional[str]) -> bool: + """Return whether ``value`` contains Japanese, Chinese, or Korean text. + + :param value: Query string to inspect. + :type value: str or None + :return: ``True`` when a CJK codepoint is present. + :rtype: bool + """ + return bool(value and _CJK_RE.search(value)) + + +def looks_han(value: Optional[str]) -> bool: + """Return whether ``value`` contains Han characters. + + :param value: Query string to inspect. + :type value: str or None + :return: ``True`` when a Han codepoint is present. + :rtype: bool + """ + return bool(value and _HAN_RE.search(value)) + + +def looks_hangul(value: Optional[str]) -> bool: + """Return whether ``value`` contains Hangul syllables. + + :param value: Query string to inspect. + :type value: str or None + :return: ``True`` when a Hangul syllable is present. + :rtype: bool + """ + return bool(value and _HANGUL_RE.search(value)) + + +def looks_japanese(value: Optional[str]) -> bool: + """Return whether ``value`` contains Japanese kana. + + Kana is a reliable signal that generic Han transliterators should + not be used as Japanese romanizers. ``anyascii`` and ``unidecode`` + do not know the Japanese reading for kanji in context, so mixed + kanji/kana titles such as ``葬送のフリーレン`` otherwise become + Chinese-reading Latin probes. + + :param value: Query string to inspect. + :type value: str or None + :return: ``True`` when hiragana or katakana is present. + :rtype: bool + """ + return bool(value and _KANA_RE.search(value)) + + +def looks_latin(value: Optional[str]) -> bool: + """Return whether ``value`` contains Latin letters. + + :param value: Query string to inspect. + :type value: str or None + :return: ``True`` when a Latin letter is present. + :rtype: bool + """ + return bool(value and _LATIN_RE.search(value)) + + +def _clean_spaces(value: str) -> str: + return " ".join(value.strip().split()) + + +def _strip_parenthetical(value: str) -> str: + cleaned = value + while True: + new = _PAREN_OR_TILDE_SUFFIX.sub("", cleaned).strip() + if new == cleaned or not new: + break + cleaned = new + return cleaned or value + + +def _strip_dash_suffix(value: str) -> str: + new = _DASH_OR_COLON_SUFFIX.sub("", value).strip() + return new or value + + +def _lowercase_strip_punct(value: str) -> str: + return _clean_spaces(_NON_WORD_RE.sub(" ", value)).casefold() + + +def _first_token(value: str) -> str: + tokens = [token for token in _TOKEN_BREAK_RE.sub(" ", value).split() if token] + if not tokens: + return value + token = tokens[0] + if len(token) < 4: + return value + return token + + +def _opencc_convert(conversion: str, value: str) -> str: + converter = _OPENCC_CONVERTERS.get(conversion) + if converter is None: + converter = OpenCC(conversion) + _OPENCC_CONVERTERS[conversion] = converter + return converter.convert(value) + + +def _convert_romaji_token(value: str) -> Optional[str]: + out = [] + pos = 0 + while pos < len(value): + char = value[pos] + if char == "'": + return None + if char == "n" and pos + 1 < len(value) and value[pos + 1] == "'": + out.append("ン") + pos += 2 + continue + if pos + 1 < len(value) and char == value[pos + 1] and char in "bcdfghjklmpqrstvwxyz" and char != "n": + out.append("ッ") + pos += 1 + continue + if char == "n" and (pos + 1 == len(value) or value[pos + 1] not in "aeiouy"): + out.append("ン") + pos += 1 + continue + + converted = None + for size in (3, 2, 1): + part = value[pos : pos + size] + converted = _ROMAJI_YOON.get(part) or _ROMAJI_SYLLABLES.get(part) + if converted is not None: + pos += size + break + if converted is None: + return None + out.append(converted) + return "".join(out) + + +def _romaji_to_katakana(value: str) -> str: + if any(char not in _ROMAJI_ALLOWED_CHARS for char in value): + return value + converted_parts = [] + for part in _ROMAJI_TOKEN_RE.findall(value.casefold()): + if part[0].isalpha() or part[0] == "'": + converted = _convert_romaji_token(part) + if converted is None: + return value + converted_parts.append(converted) + else: + converted_parts.append(part) + return "".join(converted_parts) + + +def _hangul_latin(value: str) -> str: + converted = anyascii(value) + return _clean_spaces(converted) + + +def _rationale(variant_id: str) -> str: + return { + "raw": "Original input, kept as the baseline query.", + "nfkc": "Unicode NFKC fold, useful for full-width digits and punctuation.", + "jaconv_norm": "Japanese-aware width and voiced-kana normalization via jaconv.", + "hira2kata": "Hiragana-to-katakana fold for indexes that store Japanese titles in katakana.", + "kata2hira": "Katakana-to-hiragana fold for indexes that normalize kana in one direction.", + "romaji_to_katakana": "Hepburn-style romaji-to-katakana fold for romanized Japanese titles.", + "zh_simplified": "Chinese Simplified fold via OpenCC, useful when a catalogue stores the other script.", + "zh_traditional": "Chinese Traditional fold via OpenCC, useful when a catalogue stores the other script.", + "zh_taiwan": "Traditional Chinese Taiwan phrase fold via OpenCC.", + "zh_hong_kong": "Traditional Chinese Hong Kong phrase fold via OpenCC.", + "hangul_latin": "Best-effort Hangul romanization via anyascii; use only after Hangul search misses.", + "han_latin": "Best-effort Han romanization via anyascii; use only after Han-script search misses.", + "unidecode": "Alternative CJK Latin transliteration via unidecode; it segments text differently.", + "strip_parenthetical": "Drops trailing edition, scanlation, or annotation text in brackets.", + "strip_dash_suffix": "Drops trailing dash or colon subtitles while keeping the lead title.", + "first_token": "Keeps the leading token for catalogues that penalize long annotated titles.", + "lowercase_strip_punct": "Case-folds and collapses punctuation for naive substring indexes.", + }[variant_id] + + +def build_variants(query: str) -> Dict[str, QueryVariant]: + """Build every distinct local rewrite for ``query``. + + The returned mapping is ordered by insertion order and keyed by + stable variant id. Duplicate output strings are suppressed so a + caller can layer source-specific filtering without emitting the + same query repeatedly. + + :param query: Raw input query. + :type query: str + :return: Ordered variant map keyed by variant id. + :rtype: dict[str, QueryVariant] + """ + raw = _clean_spaces(query) + out: Dict[str, QueryVariant] = {} + seen_values = set() + + def _push(variant_id: str, value: str) -> None: + cleaned = _clean_spaces(value) + if not cleaned: + return + if variant_id != "raw" and cleaned == raw: + return + if cleaned in seen_values: + return + seen_values.add(cleaned) + out[variant_id] = QueryVariant(variant_id=variant_id, query=cleaned, rationale=_rationale(variant_id)) + + _push("raw", raw) + _push("nfkc", unicodedata.normalize("NFKC", raw)) + try: + _push("jaconv_norm", jaconv.normalize(raw)) + except Exception: + pass + _push("strip_parenthetical", _strip_parenthetical(raw)) + _push("strip_dash_suffix", _strip_dash_suffix(raw)) + _push("first_token", _first_token(raw)) + if looks_japanese(raw): + try: + _push("hira2kata", jaconv.hira2kata(raw)) + _push("kata2hira", jaconv.kata2hira(raw)) + except Exception: + pass + elif looks_latin(raw) and not looks_cjk(raw): + _push("romaji_to_katakana", _romaji_to_katakana(raw)) + if looks_han(raw) and not looks_japanese(raw) and not looks_hangul(raw): + try: + _push("zh_simplified", _opencc_convert("t2s", raw)) + _push("zh_traditional", _opencc_convert("s2t", raw)) + _push("zh_taiwan", _opencc_convert("s2tw", raw)) + _push("zh_hong_kong", _opencc_convert("s2hk", raw)) + except Exception: + pass + if not looks_latin(raw): + _push("han_latin", anyascii(raw)) + _push("unidecode", unidecode(raw)) + if looks_hangul(raw): + _push("hangul_latin", _hangul_latin(raw)) + if not looks_latin(raw): + _push("unidecode", unidecode(raw)) + _push("lowercase_strip_punct", _lowercase_strip_punct(raw)) + return out + + +def selftest() -> bool: + """Smoke-test the local rewrite rules. + + Confirms annotation stripping, first-token extraction, and CJK + fallback generation without touching any upstream service. + + :return: ``True`` on success. + :rtype: bool + """ + variants = build_variants("Chainsaw Man (Official Colored)") + assert variants["raw"].query == "Chainsaw Man (Official Colored)" + assert variants["strip_parenthetical"].query == "Chainsaw Man" + assert variants["first_token"].query == "Chainsaw" + cjk = build_variants("東京") + assert "han_latin" in cjk + assert "unidecode" in cjk + japanese = build_variants("葬送のフリーレン") + assert "kata2hira" in japanese + assert "han_latin" not in japanese + assert "unidecode" not in japanese + chinese = build_variants("葬送的芙莉莲") + assert chinese["zh_traditional"].query == "葬送的芙莉蓮" + romaji = build_variants("kimetsu no yaiba") + assert romaji["romaji_to_katakana"].query == "キメツ ノ ヤイバ" + assert "romaji_to_katakana" not in build_variants("Frieren") + hangul = build_variants("장송의 프리렌") + assert "hangul_latin" in hangul + return True + + +__all__ = [ + "QueryVariant", + "build_variants", + "looks_cjk", + "looks_han", + "looks_hangul", + "looks_japanese", + "looks_latin", +] diff --git a/animedex/enhance/models.py b/animedex/enhance/models.py new file mode 100644 index 0000000..f0b4663 --- /dev/null +++ b/animedex/enhance/models.py @@ -0,0 +1,124 @@ +"""Structured models for search-query enhancement advice. + +The enhance layer is local and deterministic: it describes candidate +query strings that a caller may pass to search commands later. The +models live in their own module so renderers, CLI bindings, tests, and +library callers share one stable schema. +""" + +from __future__ import annotations + +from typing import List, Optional + +from pydantic import Field + +from animedex.models.common import AnimedexModel + + +class EnhanceSuggestion(AnimedexModel): + """One concrete query rewrite for one target source. + + :ivar variant_id: Stable identifier for the rewrite rule. + :vartype variant_id: str + :ivar query: Query string produced by the rewrite rule. + :vartype query: str + :ivar rationale: Human-readable reason this variant is worth trying. + :vartype rationale: str + :ivar est_rescue_on: Empirical cells where this variant rescued a + search miss, or an informational note for + purely syntactic cleanup variants. + :vartype est_rescue_on: list[str] + """ + + variant_id: str + query: str + rationale: str + est_rescue_on: List[str] = Field(default_factory=list) + + +class EnhanceTarget(AnimedexModel): + """Backend-specific advice for a query and entity type. + + :ivar entity_type: Aggregate entity type the advice targets, or + ``None`` for source-independent generic advice. + :vartype entity_type: str or None + :ivar source: Backend identifier, such as ``"anilist"``. + :vartype source: str + :ivar accepts: Short description of what this backend search field + accepts for the selected type. + :vartype accepts: str + :ivar guidance: Backend-specific strategy distilled from the + empirical search-eval run. + :vartype guidance: str + :ivar evidence: Compact empirical summary for the selected cell. + :vartype evidence: str + :ivar suggestions: Ordered rewrite suggestions for this target. + :vartype suggestions: list[EnhanceSuggestion] + """ + + entity_type: Optional[str] = None + source: str + accepts: str + guidance: str + evidence: str + suggestions: List[EnhanceSuggestion] = Field(default_factory=list) + + +class EnhanceResult(AnimedexModel): + """Top-level result returned by :func:`animedex.enhance.suggest`. + + :ivar input: Original user-supplied query string. + :vartype input: str + :ivar entity_type: Requested aggregate type, or ``None`` when the + result is source-independent. + :vartype entity_type: str or None + :ivar source: Requested source allowlist, or ``None`` when all + relevant sources are represented. + :vartype source: str or None + :ivar targets: Source-specific suggestion groups. + :vartype targets: list[EnhanceTarget] + """ + + input: str + entity_type: Optional[str] = None + source: Optional[str] = None + targets: List[EnhanceTarget] = Field(default_factory=list) + + +def selftest() -> bool: + """Smoke-test the enhance model schema. + + Instantiates the nested result shape and verifies pydantic can + serialise the suggestion list without losing the empirical fields. + + :return: ``True`` on success. + :rtype: bool + """ + result = EnhanceResult( + input="Frieren", + entity_type="anime", + source="anilist", + targets=[ + EnhanceTarget( + entity_type="anime", + source="anilist", + accepts="plain title text", + guidance="try raw first", + evidence="smoke", + suggestions=[ + EnhanceSuggestion( + variant_id="raw", + query="Frieren", + rationale="Original input.", + est_rescue_on=["baseline"], + ) + ], + ) + ], + ) + dumped = result.model_dump(mode="json") + assert dumped["targets"][0]["suggestions"][0]["variant_id"] == "raw" + return True + + +__all__ = ["EnhanceResult", "EnhanceSuggestion", "EnhanceTarget"] diff --git a/animedex/entry/cli.py b/animedex/entry/cli.py index 0b8b0eb..97d0ad5 100644 --- a/animedex/entry/cli.py +++ b/animedex/entry/cli.py @@ -112,6 +112,7 @@ def cli() -> None: from animedex.entry.anilist import anilist_group as _anilist_group # noqa: E402 from animedex.entry.ann import ann_group as _ann_group # noqa: E402 from animedex.entry.danbooru import danbooru_group as _danbooru_group # noqa: E402 +from animedex.entry.enhance import enhance_command as _enhance_command # noqa: E402 from animedex.entry.ghibli import ghibli_group as _ghibli_group # noqa: E402 from animedex.entry.jikan import jikan_group as _jikan_group # noqa: E402 from animedex.entry.kitsu import kitsu_group as _kitsu_group # noqa: E402 @@ -128,6 +129,7 @@ def cli() -> None: cli.add_command(_anilist_group) cli.add_command(_ann_group) cli.add_command(_danbooru_group) +cli.add_command(_enhance_command) cli.add_command(_ghibli_group) cli.add_command(_jikan_group) cli.add_command(_kitsu_group) @@ -172,7 +174,7 @@ def status_command() -> None: """ click.echo(f"{__TITLE__} v{__VERSION__}") click.echo( - "Wired groups: search, show, season, schedule, anilist, ann, danbooru, ghibli, jikan, kitsu, mangadex, nekos, quote, shikimori, trace, waifu, api (raw passthrough)." + "Wired groups: search, show, enhance, season, schedule, anilist, ann, danbooru, ghibli, jikan, kitsu, mangadex, nekos, quote, shikimori, trace, waifu, api (raw passthrough)." ) click.echo("Run 'animedex --help' for the full command tree.") diff --git a/animedex/entry/enhance.py b/animedex/entry/enhance.py new file mode 100644 index 0000000..abcfa95 --- /dev/null +++ b/animedex/entry/enhance.py @@ -0,0 +1,65 @@ +"""``animedex enhance`` query-advice command.""" + +from __future__ import annotations + +import click + +from animedex.agg._type_routes import ENTITY_TYPES +from animedex.enhance import suggest +from animedex.entry._cli_factory import emit +from animedex.models.common import ApiError + + +@click.command(name="enhance") +@click.argument("query", metavar="QUERY") +@click.option("--type", "entity_type", type=click.Choice(ENTITY_TYPES), default=None, help="Entity type to target.") +@click.option("--source", default=None, help="Comma-separated source allowlist for the selected type.") +@click.option( + "--limit-per-source", + type=int, + default=None, + help="Cap emitted queries per source, including the raw baseline.", +) +@click.option("--jq", "jq_expr", default=None, help="Filter JSON output through jq. Forces JSON mode.") +@click.option("--json", "json_flag", is_flag=True, default=False, help="Always emit JSON.") +def enhance_command(query, entity_type, source, limit_per_source, jq_expr, json_flag) -> None: + """Emit source-targeted search queries. + + The command is local and stateless. It does not call upstream + services and does not run search for you. It returns a small, + deterministic query set for each selected backend, using local + rewrite rules and source-specific search profiles. + + Use --type to get per-backend output. Use --source with a + comma-separated allowlist to focus on one backend or a small set of + backends for that type. Without --type, the command emits generic + cleanup output only. + + \b + Examples: + animedex enhance "Frieren" + animedex enhance "Chainsaw Man (Official Colored)" --type manga --source anilist --json + animedex enhance "葬送のフリーレン" --type anime --source jikan + animedex enhance "Bungou Stray Dogs 5th Season" --type anime --limit-per-source 2 + \f + + Backend: animedex (local; this command does not contact any upstream). + + Rate limit: not applicable (local-only). + + --- LLM Agent Guidance --- + Use this before aggregate searches when the user's query may need + backend-specific script conversion or cleanup. Prefer `--type`; omit + `--source` when you want all backends for that type in one pass. + The command only emits deterministic offline query strings; it + never executes search and never calls an LLM or online lookup. + --- End --- + """ + try: + result = suggest(query, entity_type=entity_type, source=source, limit_per_source=limit_per_source) + except ApiError as exc: + raise click.ClickException(str(exc)) from exc + emit(result, json_flag=json_flag, jq_expr=jq_expr, no_source=True) + + +__all__ = ["enhance_command"] diff --git a/animedex/render/tty.py b/animedex/render/tty.py index 512dcdf..725fca6 100644 --- a/animedex/render/tty.py +++ b/animedex/render/tty.py @@ -15,6 +15,7 @@ from datetime import date, datetime, time, timedelta from typing import Any, Optional +from animedex.enhance.models import EnhanceResult from animedex.models.anime import AiringScheduleRow, Anime from animedex.models.aggregate import AggregateResult, MergedAnime, ScheduleCalendarResult from animedex.models.character import Character, Staff, Studio @@ -993,6 +994,22 @@ def _format_search_aggregate_tty(result: AggregateResult) -> str: return out.getvalue() +def _format_enhance_result_tty(result: EnhanceResult) -> str: + out = io.StringIO() + bits = [] + if result.entity_type: + bits.append(f"type={result.entity_type}") + if result.source: + bits.append(f"source={result.source}") + suffix = f" ({', '.join(bits)})" if bits else "" + print(f"Enhance queries for {result.input!r}{suffix}", file=out) + for target in result.targets: + label = f"{target.entity_type}/{target.source}" if target.entity_type else target.source + queries = " | ".join(f"{suggestion.query!r}" for suggestion in target.suggestions) + print(f" {label}: {queries}", file=out) + return out.getvalue() + + def render_tty(model: AnimedexModel, *, stream: Any = None) -> str: """Render a model into the human-friendly TTY form. @@ -1012,6 +1029,8 @@ def render_tty(model: AnimedexModel, *, stream: Any = None) -> str: """ if isinstance(model, ScheduleCalendarResult): return _format_schedule_calendar_tty(model, stream=stream) + if isinstance(model, EnhanceResult): + return _format_enhance_result_tty(model) if isinstance(model, AggregateResult): if not model.items: return "" diff --git a/docs/source/_static/gifs/README.md b/docs/source/_static/gifs/README.md index 53a5d81..1780e62 100644 --- a/docs/source/_static/gifs/README.md +++ b/docs/source/_static/gifs/README.md @@ -24,6 +24,7 @@ source tapes so future contributors can regenerate them. | `shikimori.gif` | `docs/source/tutorials/backends/shikimori.rst` header | `shikimori.tape` | | `search_show.gif` | `docs/source/tutorials/search_show.rst` header | `search_show.tape` | | `aggregate.gif` | `docs/source/tutorials/aggregate.rst` header | `aggregate.tape` | +| `enhance.gif` | PR demo for `animedex enhance` | `enhance.tape` | ## Regenerating @@ -51,6 +52,7 @@ vhs nekos.tape # produces nekos.gif vhs shikimori.tape # produces shikimori.gif vhs search_show.tape # produces search_show.gif vhs aggregate.tape # produces aggregate.gif +vhs enhance.tape # produces enhance.gif ``` vhs is available as a single-file binary at diff --git a/docs/source/_static/gifs/enhance.gif b/docs/source/_static/gifs/enhance.gif new file mode 100644 index 0000000..6419ff8 Binary files /dev/null and b/docs/source/_static/gifs/enhance.gif differ diff --git a/docs/source/_static/gifs/enhance.tape b/docs/source/_static/gifs/enhance.tape new file mode 100644 index 0000000..fe6978d --- /dev/null +++ b/docs/source/_static/gifs/enhance.tape @@ -0,0 +1,53 @@ +# vhs tape - animedex enhance demo (~27 s) +# +# Offline demo for source-targeted search-query enhancement. + +Output enhance.gif + +Set Theme "Dracula" +Set FontSize 13 +Set Width 1120 +Set Height 560 +Set Padding 14 +Set Framerate 24 + +Hide +Type "export PYTHONPATH=../../../.. && clear" +Enter +Sleep 700ms +Show + +Type "python -m animedex enhance '葬送的芙莉莲' --type anime" +Sleep 400ms +Enter +Sleep 3400ms + +Type "clear" +Enter +Sleep 200ms + +Type "python -m animedex enhance '장송의 프리렌' --type anime" +Sleep 400ms +Enter +Sleep 3000ms + +Type "clear" +Enter +Sleep 200ms + +Type "python -m animedex enhance 'kimetsu no yaiba' --type anime --source jikan" +Sleep 400ms +Enter +Sleep 2800ms + +Type "clear" +Enter +Sleep 200ms + +Type "python -m animedex enhance '葬送のフリーレン' --type anime --source jikan" +Sleep 400ms +Enter +Sleep 3400ms + +# Hold the final frame so a viewer has time to read the last block. +Sleep 4s diff --git a/docs/source/api_doc/enhance/_heuristics.rst b/docs/source/api_doc/enhance/_heuristics.rst new file mode 100644 index 0000000..25ae58f --- /dev/null +++ b/docs/source/api_doc/enhance/_heuristics.rst @@ -0,0 +1,63 @@ +animedex.enhance.\_heuristics +======================================================== + +.. currentmodule:: animedex.enhance._heuristics + +.. automodule:: animedex.enhance._heuristics + + +\_\_all\_\_ +----------------------------------------------------- + +.. autodata:: __all__ + + +QueryVariant +----------------------------------------------------- + +.. autoclass:: QueryVariant + :members: variant_id,query,rationale + + +looks\_cjk +----------------------------------------------------- + +.. autofunction:: looks_cjk + + +looks\_han +----------------------------------------------------- + +.. autofunction:: looks_han + + +looks\_hangul +----------------------------------------------------- + +.. autofunction:: looks_hangul + + +looks\_japanese +----------------------------------------------------- + +.. autofunction:: looks_japanese + + +looks\_latin +----------------------------------------------------- + +.. autofunction:: looks_latin + + +build\_variants +----------------------------------------------------- + +.. autofunction:: build_variants + + +selftest +----------------------------------------------------- + +.. autofunction:: selftest + + diff --git a/docs/source/api_doc/enhance/index.rst b/docs/source/api_doc/enhance/index.rst new file mode 100644 index 0000000..8e6d40b --- /dev/null +++ b/docs/source/api_doc/enhance/index.rst @@ -0,0 +1,30 @@ +animedex.enhance +======================================================== + +.. currentmodule:: animedex.enhance + +.. automodule:: animedex.enhance + + +.. toctree:: + :maxdepth: 3 + + _heuristics + models + +\_\_all\_\_ +----------------------------------------------------- + +.. autodata:: __all__ + + +suggest +----------------------------------------------------- + +.. autofunction:: suggest + + +selftest +----------------------------------------------------- + +.. autofunction:: selftest diff --git a/docs/source/api_doc/enhance/models.rst b/docs/source/api_doc/enhance/models.rst new file mode 100644 index 0000000..5751016 --- /dev/null +++ b/docs/source/api_doc/enhance/models.rst @@ -0,0 +1,39 @@ +animedex.enhance.models +======================================================== + +.. currentmodule:: animedex.enhance.models + +.. automodule:: animedex.enhance.models + + +\_\_all\_\_ +----------------------------------------------------- + +.. autodata:: __all__ + + +EnhanceSuggestion +----------------------------------------------------- + +.. autoclass:: EnhanceSuggestion + :members: variant_id,query,rationale,est_rescue_on + + +EnhanceTarget +----------------------------------------------------- + +.. autoclass:: EnhanceTarget + :members: entity_type,source,accepts,guidance,evidence,suggestions + + +EnhanceResult +----------------------------------------------------- + +.. autoclass:: EnhanceResult + :members: input,entity_type,source,targets + + +selftest +----------------------------------------------------- + +.. autofunction:: selftest diff --git a/docs/source/api_doc/entry/enhance.rst b/docs/source/api_doc/entry/enhance.rst new file mode 100644 index 0000000..535536f --- /dev/null +++ b/docs/source/api_doc/entry/enhance.rst @@ -0,0 +1,18 @@ +animedex.entry.enhance +======================================================== + +.. currentmodule:: animedex.entry.enhance + +.. automodule:: animedex.entry.enhance + + +\_\_all\_\_ +----------------------------------------------------- + +.. autodata:: __all__ + + +enhance\_command +----------------------------------------------------- + +.. autofunction:: enhance_command diff --git a/docs/source/api_doc/entry/index.rst b/docs/source/api_doc/entry/index.rst index 06290d5..600769d 100644 --- a/docs/source/api_doc/entry/index.rst +++ b/docs/source/api_doc/entry/index.rst @@ -10,11 +10,13 @@ animedex.entry :maxdepth: 3 _cli_factory + aggregate anilist ann api/index cli danbooru + enhance ghibli jikan kitsu diff --git a/docs/source/api_doc/index.rst b/docs/source/api_doc/index.rst index d5001ca..0ce6be2 100644 --- a/docs/source/api_doc/index.rst +++ b/docs/source/api_doc/index.rst @@ -17,12 +17,14 @@ API Reference config/index data/index diag/index + enhance/index entry/index mcp/index models/index policy/index render/index transport/index + utils/index \_\_all\_\_ ----------------------------------------------------- diff --git a/requirements.txt b/requirements.txt index 80fb563..3c705d9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,5 +8,6 @@ keyring>=24 jq>=1.11 anyascii>=0.3.3 jaconv>=0.5.0 +opencc-python-reimplemented>=0.1.7 unidecode>=1.4.0 tzdata>=2025.2 diff --git a/test/enhance/__init__.py b/test/enhance/__init__.py new file mode 100644 index 0000000..95c181b --- /dev/null +++ b/test/enhance/__init__.py @@ -0,0 +1 @@ +"""Tests for :mod:`animedex.enhance`.""" diff --git a/test/enhance/test_suggest.py b/test/enhance/test_suggest.py new file mode 100644 index 0000000..36d6b31 --- /dev/null +++ b/test/enhance/test_suggest.py @@ -0,0 +1,282 @@ +"""Unit tests for backend-targeted enhance suggestions.""" + +from __future__ import annotations + +import pytest + +from animedex.models.common import ApiError + + +pytestmark = pytest.mark.unittest + + +class TestSuggest: + def test_manga_anilist_targets_annotation_cleanup(self): + from animedex.enhance import suggest + + result = suggest("Chainsaw Man (Official Colored)", entity_type="manga", source="anilist") + + assert result.input == "Chainsaw Man (Official Colored)" + assert len(result.targets) == 1 + target = result.targets[0] + assert target.entity_type == "manga" + assert target.source == "anilist" + variants = {item.variant_id: item.query for item in target.suggestions} + assert variants["raw"] == "Chainsaw Man (Official Colored)" + assert variants["strip_parenthetical"] == "Chainsaw Man" + assert variants["first_token"] == "Chainsaw" + assert variants["lowercase_strip_punct"] == "chainsaw man official colored" + assert "manga/anilist" in target.suggestions[1].est_rescue_on[0] + + def test_type_without_source_returns_each_backend_profile(self): + from animedex.enhance import suggest + + result = suggest("Bungou Stray Dogs 5th Season", entity_type="anime") + + assert [target.source for target in result.targets] == ["anilist", "ann", "jikan", "kitsu", "shikimori"] + ann = next(target for target in result.targets if target.source == "ann") + assert any(item.variant_id == "lowercase_strip_punct" for item in ann.suggestions) + assert not any(item.variant_id == "first_token" for item in ann.suggestions) + assert "ANN encyclopedia" in ann.accepts + + def test_japanese_query_suppresses_generic_latin_fallbacks(self): + from animedex.enhance import suggest + + result = suggest("葬送のフリーレン", entity_type="anime", source="jikan") + + variants = {item.variant_id for item in result.targets[0].suggestions} + queries = {item.query for item in result.targets[0].suggestions} + assert variants == {"raw"} + assert "han_latin" not in variants + assert "unidecode" not in variants + assert "ZangSongnofuriren" not in queries + assert "Zang Song nohuri-ren" not in queries + + def test_ann_does_not_invent_cross_language_aliases_for_cjk_anime(self): + from animedex.enhance import suggest + + result = suggest("葬送のフリーレン", entity_type="anime", source="ann") + + variants = {item.variant_id: item.query for item in result.targets[0].suggestions} + assert variants == {"raw": "葬送のフリーレン"} + + def test_korean_input_is_not_padded_with_unproven_backend_suggestions(self): + from animedex.enhance import suggest + + result = suggest("장송의 프리렌", entity_type="anime") + by_source = { + target.source: {item.variant_id: item.query for item in target.suggestions} for target in result.targets + } + + assert by_source["ann"] == {"raw": "장송의 프리렌"} + assert by_source["jikan"] == {"raw": "장송의 프리렌"} + + def test_chinese_input_gets_simplified_traditional_folds_for_cjk_capable_backends(self): + from animedex.enhance import suggest + + result = suggest("葬送的芙莉莲", entity_type="anime") + by_source = { + target.source: {item.variant_id: item.query for item in target.suggestions} for target in result.targets + } + + assert by_source["ann"] == {"raw": "葬送的芙莉莲"} + assert by_source["jikan"] == { + "raw": "葬送的芙莉莲", + "zh_traditional": "葬送的芙莉蓮", + } + assert by_source["anilist"] == by_source["jikan"] + + def test_romanized_japanese_gets_katakana_for_cjk_capable_backends(self): + from animedex.enhance import suggest + + result = suggest("kimetsu no yaiba", entity_type="anime") + by_source = { + target.source: {item.variant_id: item.query for item in target.suggestions} for target in result.targets + } + + assert by_source["jikan"]["romaji_to_katakana"] == "キメツ ノ ヤイバ" + assert "romaji_to_katakana" not in by_source["ann"] + + def test_kana_only_japanese_gets_directional_kana_folds(self): + from animedex.enhance import suggest + + result = suggest("ぼっち・ざ・ろっく!", entity_type="anime", source="jikan") + + variants = {item.variant_id: item.query for item in result.targets[0].suggestions} + assert variants["raw"] == "ぼっち・ざ・ろっく!" + assert variants["hira2kata"] == "ボッチ・ザ・ロック!" + + def test_low_confidence_romanized_japanese_is_not_forced(self): + from animedex.enhance import suggest + + result = suggest("Frieren", entity_type="anime", source="jikan") + + variants = {item.variant_id: item.query for item in result.targets[0].suggestions} + assert variants == {"raw": "Frieren", "lowercase_strip_punct": "frieren"} + + def test_generic_without_type_is_not_backend_fanout(self): + from animedex.enhance import suggest + + result = suggest("Frieren") + + assert result.entity_type is None + assert [target.source for target in result.targets] == ["generic"] + variants = [item.variant_id for item in result.targets[0].suggestions] + assert variants == ["raw", "lowercase_strip_punct"] + + def test_limit_per_source_caps_suggestions_including_raw(self): + from animedex.enhance import suggest + + result = suggest("Chainsaw Man (Official Colored)", entity_type="manga", source="anilist", limit_per_source=2) + + assert [item.variant_id for item in result.targets[0].suggestions] == ["raw", "strip_parenthetical"] + + def test_source_requires_type(self): + from animedex.enhance import suggest + + with pytest.raises(ApiError, match="--source requires --type"): + suggest("Frieren", source="anilist") + + def test_unknown_source_names_supported_backends(self): + from animedex.enhance import suggest + + with pytest.raises(ApiError, match="supported sources: anilist, ann, jikan, kitsu, shikimori"): + suggest("Frieren", entity_type="anime", source="mangadex") + + def test_blank_query_fails(self): + from animedex.enhance import suggest + + with pytest.raises(ApiError, match="query must not be blank"): + suggest(" ", entity_type="anime") + + def test_bad_limit_fails(self): + from animedex.enhance import suggest + + with pytest.raises(ApiError, match="limit_per_source must be >= 1"): + suggest("Frieren", entity_type="anime", limit_per_source=0) + + +class TestHeuristics: + def test_blank_and_duplicate_variants_are_suppressed(self): + from animedex.enhance._heuristics import build_variants + + variants = build_variants(" Frieren ") + + assert list(variants) == ["raw", "lowercase_strip_punct"] + + def test_suffix_and_empty_token_edges(self): + from animedex.enhance._heuristics import build_variants + + variants = build_variants("(TV)") + + assert variants["raw"].query == "(TV)" + assert "strip_parenthetical" not in variants + assert "first_token" not in variants + + punctuation = build_variants("!!!") + assert punctuation["raw"].query == "!!!" + assert "first_token" not in punctuation + assert "lowercase_strip_punct" not in punctuation + + def test_width_normalisation_variants(self): + from animedex.enhance._heuristics import build_variants + + variants = build_variants("Frieren") + + assert variants["nfkc"].query == "Frieren" + assert variants["lowercase_strip_punct"].query == "frieren" + + def test_cjk_ascii_transliteration_deduplicates_when_engines_match(self): + from animedex.enhance._heuristics import build_variants + + variants = build_variants("東京") + + queries = [variant.query for variant in variants.values()] + assert len(queries) == len(set(queries)) + + def test_jaconv_normalize_failure_is_ignored(self, monkeypatch): + from animedex.enhance import _heuristics + + def fail_normalize(value): + raise RuntimeError(value) + + monkeypatch.setattr(_heuristics.jaconv, "normalize", fail_normalize) + + variants = _heuristics.build_variants("Frieren") + + assert variants["raw"].query == "Frieren" + assert variants["nfkc"].query == "Frieren" + assert "jaconv_norm" not in variants + + def test_kata2hira_failure_is_ignored_for_japanese_query(self, monkeypatch): + from animedex.enhance import _heuristics + + def fail_kata2hira(value): + raise RuntimeError(value) + + monkeypatch.setattr(_heuristics.jaconv, "kata2hira", fail_kata2hira) + + variants = _heuristics.build_variants("葬送のフリーレン") + + assert variants["raw"].query == "葬送のフリーレン" + assert "kata2hira" not in variants + assert "anyascii" not in variants + assert "unidecode" not in variants + + def test_han_only_query_keeps_latin_fallbacks(self): + from animedex.enhance._heuristics import build_variants + + variants = build_variants("東京") + + assert "han_latin" in variants + assert "unidecode" in variants + + def test_chinese_script_folds_are_general_opencc_conversions(self): + from animedex.enhance._heuristics import build_variants + + variants = build_variants("葬送的芙莉莲") + + assert variants["zh_traditional"].query == "葬送的芙莉蓮" + + def test_opencc_library_failure_is_ignored_for_han_query(self, monkeypatch): + from opencc import OpenCC + + from animedex.enhance._heuristics import build_variants + + def fail_convert(self, value): + raise RuntimeError(value) + + monkeypatch.setattr(OpenCC, "convert", fail_convert) + + variants = build_variants("葬送的芙莉莲") + + assert variants["raw"].query == "葬送的芙莉莲" + assert "zh_traditional" not in variants + assert "han_latin" in variants + + def test_romaji_to_katakana_requires_complete_conversion(self): + from animedex.enhance._heuristics import build_variants + + assert build_variants("kimetsu no yaiba")["romaji_to_katakana"].query == "キメツ ノ ヤイバ" + assert build_variants("bocchi za rokku")["romaji_to_katakana"].query == "ボッチ ザ ロック" + assert build_variants("shin'ichi")["romaji_to_katakana"].query == "シンイチ" + assert "romaji_to_katakana" not in build_variants("Frieren") + assert "romaji_to_katakana" not in build_variants("sousou no frieren") + assert "romaji_to_katakana" not in build_variants("kimetsu@yaiba") + assert "romaji_to_katakana" not in build_variants("'kimetsu") + + def test_hangul_latin_variant_exists_for_generic_use(self): + from animedex.enhance._heuristics import build_variants + + variants = build_variants("장송의 프리렌") + + assert variants["hangul_latin"].query == "JangSongUi PeuLiLen" + + def test_enhance_selftests_pass(self): + import animedex.enhance as enhance + from animedex.enhance import _heuristics + from animedex.enhance import models + + assert _heuristics.selftest() is True + assert enhance.selftest() is True + assert models.selftest() is True diff --git a/test/entry/test_enhance.py b/test/entry/test_enhance.py new file mode 100644 index 0000000..beff5ee --- /dev/null +++ b/test/entry/test_enhance.py @@ -0,0 +1,118 @@ +"""CLI tests for the top-level ``animedex enhance`` command.""" + +from __future__ import annotations + +import json + +import pytest +import responses + + +pytestmark = pytest.mark.unittest + + +@pytest.fixture +def cli_runner(): + import inspect + + from click.testing import CliRunner + + if "mix_stderr" in inspect.signature(CliRunner).parameters: + return CliRunner(mix_stderr=False) + return CliRunner() + + +@pytest.fixture +def cli(): + from animedex.entry import animedex_cli + + return animedex_cli + + +@pytest.fixture +def force_tty(monkeypatch): + import click.testing + + monkeypatch.setattr(click.testing._NamedTextIOWrapper, "isatty", lambda self: True, raising=False) + + +class TestEnhanceCli: + def test_help_lists_examples_and_hides_policy_blocks(self, cli_runner, cli): + result = cli_runner.invoke(cli, ["enhance", "--help"]) + + assert result.exit_code == 0, result.output + assert "Emit source-targeted search queries." in result.output + assert 'animedex enhance "Frieren"' in result.output + assert "Backend:" not in result.output + assert "--- LLM Agent Guidance ---" not in result.output + + def test_json_output_is_targeted_by_source(self, cli_runner, cli): + with responses.RequestsMock(assert_all_requests_are_fired=False) as rsps: + result = cli_runner.invoke( + cli, + [ + "enhance", + "Chainsaw Man (Official Colored)", + "--type", + "manga", + "--source", + "anilist", + "--json", + ], + ) + + assert result.exit_code == 0, result.output + assert len(rsps.calls) == 0 + decoded = json.loads(result.output) + assert decoded["input"] == "Chainsaw Man (Official Colored)" + assert decoded["entity_type"] == "manga" + assert [target["source"] for target in decoded["targets"]] == ["anilist"] + variants = {item["variant_id"]: item["query"] for item in decoded["targets"][0]["suggestions"]} + assert variants["strip_parenthetical"] == "Chainsaw Man" + assert variants["first_token"] == "Chainsaw" + assert "_meta" not in decoded + + def test_default_tty_output_is_not_json(self, cli_runner, cli, force_tty): + result = cli_runner.invoke( + cli, + ["enhance", "Bungou Stray Dogs 5th Season", "--type", "anime", "--source", "ann"], + ) + + assert result.exit_code == 0, result.output + assert result.output.startswith("Enhance queries for") + assert "anime/ann" in result.output + assert "'Bungou Stray Dogs 5th Season'" in result.output + assert "'bungou stray dogs 5th season'" in result.output + assert "'Bungou'" not in result.output + assert not result.output.lstrip().startswith("{") + + def test_japanese_tty_output_is_backend_targeted(self, cli_runner, cli, force_tty): + result = cli_runner.invoke(cli, ["enhance", "葬送のフリーレン", "--type", "anime"]) + + assert result.exit_code == 0, result.output + assert "anime/anilist: '葬送のフリーレン'" in result.output + assert "anime/ann: '葬送のフリーレン'" in result.output + assert "Frieren: Beyond Journey's End" not in result.output + assert "ZangSong" not in result.output + + def test_non_tty_auto_switches_to_json(self, cli_runner, cli): + result = cli_runner.invoke(cli, ["enhance", "Frieren"]) + + assert result.exit_code == 0, result.output + decoded = json.loads(result.output) + assert decoded["targets"][0]["source"] == "generic" + + def test_jq_filter_forces_json(self, cli_runner, cli): + result = cli_runner.invoke(cli, ["enhance", "Frieren", "--jq", ".targets[0].suggestions[1].query"]) + + assert result.exit_code == 0, result.output + assert result.output.strip() == '"frieren"' + + def test_source_error_is_clean_click_exception(self, cli_runner, cli): + result = cli_runner.invoke(cli, ["enhance", "Frieren", "--source", "anilist"]) + + assert result.exit_code != 0 + combined = result.output + if hasattr(result, "stderr"): + combined += result.stderr + assert "--source requires --type" in combined diff --git a/test/tools/test_generate_spec.py b/test/tools/test_generate_spec.py index 8110278..d62fd41 100644 --- a/test/tools/test_generate_spec.py +++ b/test/tools/test_generate_spec.py @@ -13,5 +13,7 @@ def test_transliterator_runtime_tables_are_collected_for_freezing(): assert "anyascii._data" in generate_spec.HIDDEN_IMPORTS assert "unidecode" in generate_spec.HIDDEN_IMPORTS assert "unidecode.util" in generate_spec.HIDDEN_IMPORTS + assert "opencc" in generate_spec.HIDDEN_IMPORTS assert "anyascii" in generate_spec.PACKAGE_DATAS assert "unidecode" in generate_spec.PACKAGE_DATAS + assert "opencc" in generate_spec.PACKAGE_DATAS diff --git a/tools/generate_spec.py b/tools/generate_spec.py index 749dc53..f09d941 100644 --- a/tools/generate_spec.py +++ b/tools/generate_spec.py @@ -102,6 +102,9 @@ # depend on PyInstaller's current collection heuristics. "unidecode", "unidecode.util", + # ``opencc`` loads converter configuration and dictionary modules + # at runtime from package data. + "opencc", ] PACKAGE_DATAS = [ @@ -112,6 +115,9 @@ # Required by ``unidecode.unidecode`` after freezing; the package's # transliteration tables are loaded lazily by code-point block. "unidecode", + # Required by ``opencc.OpenCC`` for Simplified/Traditional Chinese + # conversion dictionaries and converter JSON files. + "opencc", # Required by ``zoneinfo.ZoneInfo`` on platforms that do not ship an # IANA timezone database, most notably Windows. "tzdata", diff --git a/tools/search_eval/__init__.py b/tools/search_eval/__init__.py new file mode 100644 index 0000000..a75eb4c --- /dev/null +++ b/tools/search_eval/__init__.py @@ -0,0 +1 @@ +"""Search-quality evaluation harness (experimental, not shipped).""" diff --git a/tools/search_eval/enrich_mal_cjk_samples.py b/tools/search_eval/enrich_mal_cjk_samples.py new file mode 100644 index 0000000..f1f1d41 --- /dev/null +++ b/tools/search_eval/enrich_mal_cjk_samples.py @@ -0,0 +1,348 @@ +"""Enrich the MAL CJK anime sample set with zh/ko mainstream titles. + +The script intentionally keeps source attribution for every added title. +It starts with high-confidence MAL-ID joins through Wikidata, then adds +AniList synonyms, and finally uses MediaWiki search as a labelled fallback +for entries that still lack a Chinese or Korean title. +""" + +from __future__ import annotations + +import argparse +import json +import re +import time +from datetime import datetime, timezone +from pathlib import Path +from typing import Dict, Iterable, List, Optional + +import requests + + +HAN_RE = re.compile(r"[\u3400-\u9fff\uf900-\ufaff]") +HIRAGANA_KATAKANA_RE = re.compile(r"[\u3040-\u30ff]") +HANGUL_RE = re.compile(r"[\uac00-\ud7af]") +LATIN_RE = re.compile(r"[A-Za-z]") + +USER_AGENT = "animedex-search-eval/0.1 (sample enrichment)" +WIKIDATA_SPARQL = "https://query.wikidata.org/sparql" +ANILIST_GRAPHQL = "https://graphql.anilist.co" + + +def _chunks(values: List[str], size: int) -> Iterable[List[str]]: + for i in range(0, len(values), size): + yield values[i : i + size] + + +def _now_iso() -> str: + return datetime.now(timezone.utc).replace(microsecond=0).isoformat().replace("+00:00", "Z") + + +def _clean_title(value: Optional[str]) -> str: + if not value: + return "" + return " ".join(value.replace("_", " ").strip().split()) + + +def _has_han(value: str) -> bool: + return bool(HAN_RE.search(value)) + + +def _has_hangul(value: str) -> bool: + return bool(HANGUL_RE.search(value)) + + +def _has_kana(value: str) -> bool: + return bool(HIRAGANA_KATAKANA_RE.search(value)) + + +def _looks_chinese_alias(value: str, native_titles: Iterable[str]) -> bool: + if not value or _has_kana(value) or _has_hangul(value) or not _has_han(value): + return False + if value in set(native_titles): + return False + return True + + +def _source_url(source: str, qid: Optional[str] = None, lang: Optional[str] = None, title: Optional[str] = None) -> str: + if source.startswith("wikidata") and qid: + return f"https://www.wikidata.org/wiki/{qid}" + if source.startswith("zhwiki") and title: + return "https://zh.wikipedia.org/wiki/" + requests.utils.quote(title.replace(" ", "_")) + if source.startswith("kowiki") and title: + return "https://ko.wikipedia.org/wiki/" + requests.utils.quote(title.replace(" ", "_")) + if source.startswith("anilist"): + return "https://anilist.co/search/anime" + return "" + + +def _add_title( + sample: dict, + field: str, + value: Optional[str], + *, + source: str, + language: str, + qid: Optional[str] = None, + searched_query: Optional[str] = None, +) -> None: + title = _clean_title(value) + if not title: + return + bucket = sample.setdefault(field, []) + if any(item.get("title") == title for item in bucket): + return + item = { + "title": title, + "language": language, + "source": source, + "source_url": _source_url(source, qid=qid, lang=language, title=title), + } + if searched_query: + item["searched_query"] = searched_query + bucket.append(item) + + +def _wikidata_query(mal_ids: List[str]) -> str: + values = " ".join(f'"{mal_id}"' for mal_id in mal_ids) + return f""" +SELECT ?item ?mal ?zhLabel ?zhAlt ?koLabel ?koAlt ?zhwikiTitle ?kowikiTitle WHERE {{ + VALUES ?mal {{ {values} }} + ?item wdt:P4086 ?mal. + OPTIONAL {{ ?item rdfs:label ?zhLabel FILTER(LANG(?zhLabel) IN ("zh", "zh-cn", "zh-hans", "zh-hant", "zh-hk", "zh-tw")) }} + OPTIONAL {{ ?item skos:altLabel ?zhAlt FILTER(LANG(?zhAlt) IN ("zh", "zh-cn", "zh-hans", "zh-hant", "zh-hk", "zh-tw")) }} + OPTIONAL {{ ?item rdfs:label ?koLabel FILTER(LANG(?koLabel) = "ko") }} + OPTIONAL {{ ?item skos:altLabel ?koAlt FILTER(LANG(?koAlt) = "ko") }} + OPTIONAL {{ ?zhwiki schema:about ?item; schema:isPartOf ; schema:name ?zhwikiTitle. }} + OPTIONAL {{ ?kowiki schema:about ?item; schema:isPartOf ; schema:name ?kowikiTitle. }} +}} +""" + + +def enrich_from_wikidata(samples: List[dict], session: requests.Session) -> None: + by_mal: Dict[str, dict] = {str(sample["mal_id"]): sample for sample in samples} + for chunk in _chunks(list(by_mal), 40): + response = session.post( + WIKIDATA_SPARQL, + data={"query": _wikidata_query(chunk), "format": "json"}, + timeout=30, + ) + response.raise_for_status() + bindings = response.json().get("results", {}).get("bindings", []) + for row in bindings: + mal = row.get("mal", {}).get("value") + sample = by_mal.get(str(mal)) + if not sample: + continue + qid = row.get("item", {}).get("value", "").rsplit("/", 1)[-1] + sample.setdefault("wikidata_ids", []) + if qid and qid not in sample["wikidata_ids"]: + sample["wikidata_ids"].append(qid) + _add_title( + sample, + "chinese_titles", + row.get("zhwikiTitle", {}).get("value"), + source="zhwiki_sitelink", + language="zh", + qid=qid, + ) + _add_title( + sample, + "korean_titles", + row.get("kowikiTitle", {}).get("value"), + source="kowiki_sitelink", + language="ko", + qid=qid, + ) + _add_title( + sample, + "chinese_titles", + row.get("zhLabel", {}).get("value"), + source="wikidata_label", + language="zh", + qid=qid, + ) + _add_title( + sample, + "chinese_titles", + row.get("zhAlt", {}).get("value"), + source="wikidata_alt_label", + language="zh", + qid=qid, + ) + _add_title( + sample, + "korean_titles", + row.get("koLabel", {}).get("value"), + source="wikidata_label", + language="ko", + qid=qid, + ) + _add_title( + sample, + "korean_titles", + row.get("koAlt", {}).get("value"), + source="wikidata_alt_label", + language="ko", + qid=qid, + ) + time.sleep(0.2) + + +def enrich_from_anilist(samples: List[dict], session: requests.Session) -> None: + query = """ +query ($ids: [Int], $perPage: Int) { + Page(page: 1, perPage: $perPage) { + media(idMal_in: $ids, type: ANIME) { + id + idMal + title { romaji english native } + synonyms + } + } +} +""" + by_mal: Dict[int, dict] = {int(sample["mal_id"]): sample for sample in samples} + ids = list(by_mal) + for chunk in _chunks([str(i) for i in ids], 50): + int_ids = [int(value) for value in chunk] + response = session.post( + ANILIST_GRAPHQL, + json={"query": query, "variables": {"ids": int_ids, "perPage": len(int_ids)}}, + timeout=30, + ) + response.raise_for_status() + for media in response.json().get("data", {}).get("Page", {}).get("media", []) or []: + sample = by_mal.get(int(media.get("idMal") or 0)) + if not sample: + continue + sample["anilist_id"] = media.get("id") + native_titles = set(sample.get("cjk_titles") or []) + native = (media.get("title") or {}).get("native") + if native: + native_titles.add(native) + for synonym in media.get("synonyms") or []: + title = _clean_title(synonym) + if not title: + continue + if _has_hangul(title): + _add_title(sample, "korean_titles", title, source="anilist_synonym", language="ko") + elif _looks_chinese_alias(title, native_titles): + _add_title(sample, "chinese_titles", title, source="anilist_synonym", language="zh") + time.sleep(0.5) + + +def _mediawiki_search(session: requests.Session, lang: str, query: str) -> Optional[str]: + endpoint = f"https://{lang}.wikipedia.org/w/api.php" + params = { + "action": "query", + "list": "search", + "srsearch": query, + "srlimit": 1, + "format": "json", + "utf8": 1, + } + for attempt in range(4): + response = session.get(endpoint, params=params, timeout=15) + if response.status_code in {429, 500, 502, 503, 504}: + time.sleep(2.0 * (attempt + 1)) + continue + response.raise_for_status() + rows = response.json().get("query", {}).get("search", []) + break + else: + return None + if not rows: + return None + return _clean_title(rows[0].get("title")) + + +def enrich_from_wikipedia_search(samples: List[dict], session: requests.Session) -> None: + for sample in samples: + queries = [ + sample.get("english_title"), + sample.get("default_title"), + sample.get("cjk_title"), + ] + queries = [q for q in queries if q] + if not sample.get("chinese_titles"): + for query in queries: + time.sleep(0.8) + title = _mediawiki_search(session, "zh", query) + if title: + _add_title( + sample, + "chinese_titles", + title, + source="zhwiki_search_top", + language="zh", + searched_query=query, + ) + break + if not sample.get("korean_titles"): + for query in queries: + time.sleep(0.8) + title = _mediawiki_search(session, "ko", query) + if title: + _add_title( + sample, + "korean_titles", + title, + source="kowiki_search_top", + language="ko", + searched_query=query, + ) + break + + +def finalise(samples: List[dict]) -> dict: + coverage = { + "samples": len(samples), + "with_chinese_title": sum(1 for sample in samples if sample.get("chinese_titles")), + "with_korean_title": sum(1 for sample in samples if sample.get("korean_titles")), + "with_wikidata_id": sum(1 for sample in samples if sample.get("wikidata_ids")), + "with_anilist_id": sum(1 for sample in samples if sample.get("anilist_id")), + } + for sample in samples: + sample["chinese_title"] = ( + sample.get("chinese_titles", [{}])[0].get("title") if sample.get("chinese_titles") else None + ) + sample["korean_title"] = ( + sample.get("korean_titles", [{}])[0].get("title") if sample.get("korean_titles") else None + ) + return coverage + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("--input", default="tools/search_eval/samples/mal_multilingual_anime100.json") + parser.add_argument("--output", default="tools/search_eval/samples/mal_multilingual_anime100_enriched.json") + parser.add_argument("--skip-wikipedia-search", action="store_true") + args = parser.parse_args() + + payload = json.loads(Path(args.input).read_text(encoding="utf-8")) + samples = payload["samples"] + session = requests.Session() + session.headers.update({"User-Agent": USER_AGENT, "Accept": "application/json"}) + + enrich_from_wikidata(samples, session) + enrich_from_anilist(samples, session) + if not args.skip_wikipedia_search: + enrich_from_wikipedia_search(samples, session) + + payload["enrichment"] = { + "captured_at_utc": _now_iso(), + "sources": [ + "Wikidata SPARQL by MyAnimeList anime ID (P4086)", + "Chinese and Korean Wikipedia sitelinks exposed through Wikidata", + "AniList GraphQL idMal_in title synonyms", + "Chinese and Korean Wikipedia search top result for remaining gaps", + ], + "coverage": finalise(samples), + } + Path(args.output).write_text(json.dumps(payload, ensure_ascii=False, indent=2) + "\n", encoding="utf-8") + print(json.dumps(payload["enrichment"]["coverage"], ensure_ascii=False, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/tools/search_eval/eval_mal_cjk100.py b/tools/search_eval/eval_mal_cjk100.py new file mode 100644 index 0000000..8710719 --- /dev/null +++ b/tools/search_eval/eval_mal_cjk100.py @@ -0,0 +1,660 @@ +"""Evaluate anime search enhancement on the enriched MAL multilingual sample set.""" + +from __future__ import annotations + +import argparse +import json +import os +import re +import time +from collections import defaultdict +from dataclasses import asdict, dataclass, field +from pathlib import Path +from typing import Iterable, List, Optional, Tuple + +from animedex.agg._type_routes import call_search_route, search_routes_for +from animedex.config import Config +from animedex.enhance import suggest +from animedex.enhance._heuristics import build_variants +from animedex.enhance.models import EnhanceResult +from animedex.models.common import ApiError +from tools.search_eval.scoring import score_rows + + +CJK_RE = re.compile(r"[\u3040-\u30ff\u3400-\u9fff\uf900-\ufaff\uac00-\ud7af]") +LATIN_RE = re.compile(r"[A-Za-z]") + + +@dataclass +class Cell: + """One evaluated search request.""" + + sample_index: int + mal_id: int + popularity: int + input_lang: str + backend: str + variant: str + query: str + hit: bool + position: Optional[int] + kind: str + n_returned: int + duration_ms: float + error: Optional[str] = None + top_titles: List[str] = field(default_factory=list) + top_ids: List[object] = field(default_factory=list) + + +def _install_proxy_from_env() -> bool: + proxy = os.environ.get("PP_AO3") or os.environ.get("HTTPS_PROXY") or os.environ.get("HTTP_PROXY") + if not proxy: + return False + os.environ["HTTP_PROXY"] = proxy + os.environ["HTTPS_PROXY"] = proxy + os.environ["http_proxy"] = proxy + os.environ["https_proxy"] = proxy + return True + + +def _latin_alias(sample: dict) -> Optional[str]: + for value in [sample.get("english_title"), sample.get("default_title"), *(sample.get("latin_titles") or [])]: + if value and LATIN_RE.search(value) and not CJK_RE.search(value): + return value + return None + + +def _representative_title(items: Iterable[dict]) -> Optional[str]: + values = _title_entries(items) + if not values: + return None + plain = [value for value in values if not re.search(r"[\[((]", value)] + candidates = plain or values + return sorted(candidates, key=lambda value: (len(value), value))[0] + + +def _title_entries(items: Iterable[dict]) -> List[str]: + out: List[str] = [] + for item in items or []: + title = item.get("title") if isinstance(item, dict) else None + if title and title not in out: + out.append(title) + return out + + +def input_queries(sample: dict) -> List[Tuple[str, str]]: + """Return representative user input queries split by script/language.""" + candidates = [ + ("ja", sample.get("cjk_title")), + ("zh_cn", _representative_title(sample.get("chinese_titles_cn") or [])), + ("zh_hk_mo", _representative_title(sample.get("chinese_titles_hk_mo") or [])), + ("zh_tw", _representative_title(sample.get("chinese_titles_tw") or [])), + ("ko", _representative_title(sample.get("korean_titles") or [])), + ("en", sample.get("english_title") or _latin_alias(sample)), + ] + out: List[Tuple[str, str]] = [] + for lang, value in candidates: + if value and value.strip(): + out.append((lang, " ".join(value.split()))) + return out + + +def variant_queries( + query: str, + backend: str, + *, + runtime_only: bool = False, +) -> List[Tuple[str, str]]: + out: List[Tuple[str, str]] = [("raw", query)] + seen = {query} + + result = suggest(query, entity_type="anime", source=backend, limit_per_source=20) + for suggestion in result.targets[0].suggestions: + q = suggestion.query + if q and q not in seen: + out.append((f"enhance_{suggestion.variant_id}", q)) + seen.add(q) + + if runtime_only: + return out + + for variant_id, variant in build_variants(query).items(): + q = variant.query + if variant_id != "raw" and q and q not in seen: + out.append((f"explore_{variant_id}", q)) + seen.add(q) + return out + + +def _row_titles(row: dict) -> List[str]: + out: List[str] = [] + + def walk(obj): + if isinstance(obj, dict): + for key, value in obj.items(): + if key.lower() in { + "title", + "titles", + "name", + "english", + "native", + "romaji", + "japanese", + "canonicaltitle", + "canonicalname", + "synonyms", + "titlesynonyms", + "abbreviatedtitles", + }: + walk(value) + elif isinstance(value, (dict, list)): + walk(value) + elif isinstance(obj, list): + for value in obj: + walk(value) + elif isinstance(obj, str) and obj and len(obj) <= 180: + out.append(obj) + + walk(row) + return list(dict.fromkeys(out))[:20] + + +def _write_cell(path: Path, cell: Cell) -> None: + with path.open("a", encoding="utf-8") as fh: + fh.write(json.dumps(asdict(cell), ensure_ascii=False) + "\n") + + +def _write_cells(path: Path, cells: List[Cell]) -> None: + with path.open("w", encoding="utf-8") as fh: + for cell in cells: + fh.write(json.dumps(asdict(cell), ensure_ascii=False) + "\n") + + +def _read_done(path: Path) -> set: + done = set() + if not path.exists(): + return done + with path.open(encoding="utf-8") as fh: + for line in fh: + if not line.strip(): + continue + row = json.loads(line) + done.add( + (row["sample_index"], row.get("input_lang", "legacy"), row["backend"], row["variant"], row["query"]) + ) + return done + + +def _read_cells(path: Path) -> List[Cell]: + cells = [] + if not path.exists(): + return cells + with path.open(encoding="utf-8") as fh: + for line in fh: + if line.strip(): + cells.append(Cell(**json.loads(line))) + return cells + + +def _read_meta(path: Path) -> dict: + if not path.exists(): + return {} + try: + return json.loads(path.read_text(encoding="utf-8")) + except (json.JSONDecodeError, OSError): + return {} + + +def _current_variant_values() -> dict: + """Return the variant labels emitted by the current runtime for each measured input.""" + payload = json.loads( + Path("tools/search_eval/samples/mal_multilingual_anime100_enriched.json").read_text(encoding="utf-8") + ) + samples = payload["samples"] + backends = [route.backend for route in search_routes_for("anime")] + out = {} + for sample_index, sample in enumerate(samples, 1): + for input_lang, query in input_queries(sample): + for backend in backends: + result: EnhanceResult = suggest(query, entity_type="anime", source=backend, limit_per_source=20) + allowed = {("raw", query)} + for suggestion in result.targets[0].suggestions: + if suggestion.query != query: + allowed.add((f"enhance_{suggestion.variant_id}", suggestion.query)) + out[(sample_index, input_lang, backend)] = allowed + return out + + +def _strict_hit(cell: Cell) -> bool: + """Return whether a stored cell is a strict target hit.""" + return bool(cell.hit and cell.kind in {"id", "title_exact"}) + + +def _seed_for(sample: dict) -> dict: + aliases = list(dict.fromkeys([sample.get("cjk_title"), *(sample.get("aliases") or [])])) + aliases.extend(_title_entries(sample.get("chinese_titles") or [])) + aliases.extend(_title_entries(sample.get("chinese_titles_cn") or [])) + aliases.extend(_title_entries(sample.get("chinese_titles_hk_mo") or [])) + aliases.extend(_title_entries(sample.get("chinese_titles_tw") or [])) + aliases.extend(_title_entries(sample.get("korean_titles") or [])) + aliases.extend(sample.get("latin_titles") or []) + aliases.extend([sample.get("english_title"), sample.get("default_title")]) + return { + "query": sample["cjk_title"], + "aliases": [value for value in dict.fromkeys(aliases) if value], + "ids": {"mal": sample["mal_id"], "jikan": sample["mal_id"]}, + } + + +def evaluate(args) -> Path: + payload = json.loads(Path(args.samples).read_text(encoding="utf-8")) + samples = payload["samples"][: args.max_samples] + out_dir = Path(args.out) + out_dir.mkdir(parents=True, exist_ok=True) + cells_path = out_dir / "cells.jsonl" + if args.report_only: + existing_meta = _read_meta(out_dir / "meta.json") + proxy_used = bool(existing_meta.get("proxy_used", args.proxy_used)) + elapsed = float(existing_meta.get("elapsed_seconds", 0.0) or 0.0) + write_reports( + cells_path, samples, out_dir, proxy_used=proxy_used, elapsed=elapsed, runtime_only=args.runtime_only + ) + return out_dir + done = _read_done(cells_path) if args.resume else set() + proxy_used = _install_proxy_from_env() + routes = [route for route in search_routes_for("anime") if not args.backends or route.backend in args.backends] + config = Config(rate=args.rate, timeout_seconds=args.timeout) + started = time.time() + total_planned = 0 + total_done = len(done) + print(f"proxy: {'yes' if proxy_used else 'no'}", flush=True) + print(f"samples: {len(samples)} routes: {[route.backend for route in routes]}", flush=True) + + for si, sample in enumerate(samples, 1): + seed = _seed_for(sample) + sample_inputs = input_queries(sample) + for route in routes: + for input_lang, input_query in sample_inputs: + variants = variant_queries(input_query, route.backend, runtime_only=args.runtime_only) + total_planned += len(variants) + for label, query in variants: + key = (si, input_lang, route.backend, label, query) + if key in done: + continue + t0 = time.perf_counter() + rows = [] + err = None + try: + rows = call_search_route(route, query=query, limit=args.limit, config=config, no_cache=True) + except ApiError as exc: + err = f"{exc.reason}: {exc}" + except Exception as exc: # noqa: BLE001 + err = f"{type(exc).__name__}: {exc}" + elapsed = (time.perf_counter() - t0) * 1000 + rows = list(rows or []) + score = score_rows(rows, seed, route.backend) if rows else {"position": None, "kind": ""} + top_titles = [] + top_ids = [] + for raw in rows[:3]: + dumped = raw.model_dump(mode="json", by_alias=True) if hasattr(raw, "model_dump") else raw + if isinstance(dumped, dict): + top_titles.extend(_row_titles(dumped)[:3]) + top_ids.append(dumped.get("id") or dumped.get("mal_id")) + cell = Cell( + sample_index=si, + mal_id=sample["mal_id"], + popularity=sample["popularity"], + input_lang=input_lang, + backend=route.backend, + variant=label, + query=query, + hit=bool(score.get("kind")), + position=score.get("position"), + kind=score.get("kind") or "", + n_returned=len(rows), + duration_ms=round(elapsed, 1), + error=err, + top_titles=list(dict.fromkeys(top_titles))[:8], + top_ids=top_ids, + ) + _write_cell(cells_path, cell) + total_done += 1 + if total_done % args.progress_every == 0: + print( + f"done cells={total_done} sample={si}/{len(samples)} " + f"input={input_lang} elapsed={time.time() - started:.1f}s", + flush=True, + ) + write_reports( + cells_path, + samples, + out_dir, + proxy_used=proxy_used, + elapsed=time.time() - started, + runtime_only=args.runtime_only, + ) + return out_dir + + +def _rates(cells: List[Cell]) -> dict: + buckets = defaultdict(lambda: {"n": 0, "hits": 0, "errors": 0, "top1": 0}) + for cell in cells: + key = (cell.input_lang, cell.backend, cell.variant) + bucket = buckets[key] + bucket["n"] += 1 + if cell.error: + bucket["errors"] += 1 + if _strict_hit(cell): + bucket["hits"] += 1 + if cell.position == 0: + bucket["top1"] += 1 + return { + "|".join(key): { + **value, + "hit_rate": round(value["hits"] / max(value["n"] - value["errors"], 1), 3), + "top1_rate": round(value["top1"] / max(value["n"] - value["errors"], 1), 3), + } + for key, value in sorted(buckets.items()) + } + + +def _rescue(cells: List[Cell]) -> dict: + by_sample_input_backend = defaultdict(list) + for cell in cells: + by_sample_input_backend[(cell.sample_index, cell.input_lang, cell.backend)].append(cell) + out = {} + for input_lang in sorted({cell.input_lang for cell in cells}): + out[input_lang] = {} + for backend in sorted({cell.backend for cell in cells}): + stats = { + "n": 0, + "raw_hit": 0, + "raw_top1": 0, + "raw_zero": 0, + "enhance_any_hit": 0, + "enhance_top1": 0, + "enhance_rescues": 0, + "zero_rescues": 0, + "enhance_zero": 0, + "enhance_harmed": 0, + "raw_hit_rate": 0.0, + "enhance_any_hit_rate": 0.0, + "rescue_rate": 0.0, + } + for (_sample_index, group_lang, group_backend), group in by_sample_input_backend.items(): + if group_lang != input_lang or group_backend != backend: + continue + stats["n"] += 1 + raw_cells = [cell for cell in group if cell.variant == "raw"] + enhance_cells = [cell for cell in group if cell.variant.startswith("enhance_")] + raw_hit = any(_strict_hit(cell) for cell in raw_cells) + raw_top1 = any(_strict_hit(cell) and cell.position == 0 for cell in raw_cells) + raw_zero = bool(raw_cells) and all(not cell.error and cell.n_returned == 0 for cell in raw_cells) + enhance_hit = any(_strict_hit(cell) for cell in enhance_cells) + enhance_top1 = raw_top1 or any(_strict_hit(cell) and cell.position == 0 for cell in enhance_cells) + any_hit = raw_hit or enhance_hit + any_zero = bool(raw_cells or enhance_cells) and all( + not cell.error and cell.n_returned == 0 for cell in [*raw_cells, *enhance_cells] + ) + if raw_hit: + stats["raw_hit"] += 1 + if raw_top1: + stats["raw_top1"] += 1 + if raw_zero: + stats["raw_zero"] += 1 + if any_hit: + stats["enhance_any_hit"] += 1 + if enhance_top1: + stats["enhance_top1"] += 1 + if not raw_hit and enhance_hit: + stats["enhance_rescues"] += 1 + if raw_zero: + stats["zero_rescues"] += 1 + if raw_hit and not any_hit: + stats["enhance_harmed"] += 1 + if any_zero: + stats["enhance_zero"] += 1 + n = stats["n"] or 1 + raw_misses = max(stats["n"] - stats["raw_hit"], 1) + stats["raw_hit_rate"] = round(stats["raw_hit"] / n, 3) + stats["enhance_any_hit_rate"] = round(stats["enhance_any_hit"] / n, 3) + stats["rescue_rate"] = round(stats["enhance_rescues"] / raw_misses, 3) + out[input_lang][backend] = stats + return out + + +def _overall_rescue(cells: List[Cell]) -> dict: + by_sample_input_backend = defaultdict(list) + for cell in cells: + by_sample_input_backend[(cell.sample_index, cell.input_lang, cell.backend)].append(cell) + out = {} + for backend in sorted({cell.backend for cell in cells}): + stats = { + "n": 0, + "raw_hit": 0, + "enhance_any_hit": 0, + "enhance_rescues": 0, + "zero_rescues": 0, + "raw_zero": 0, + "enhance_zero": 0, + } + for (_sample_index, _input_lang, group_backend), group in by_sample_input_backend.items(): + if group_backend != backend: + continue + stats["n"] += 1 + raw_cells = [cell for cell in group if cell.variant == "raw"] + enhance_cells = [cell for cell in group if cell.variant.startswith("enhance_")] + raw_hit = any(_strict_hit(cell) for cell in raw_cells) + enhance_hit = any(_strict_hit(cell) for cell in enhance_cells) + raw_zero = bool(raw_cells) and all(not cell.error and cell.n_returned == 0 for cell in raw_cells) + enhance_zero = bool(raw_cells or enhance_cells) and all( + not cell.error and cell.n_returned == 0 for cell in [*raw_cells, *enhance_cells] + ) + if raw_hit: + stats["raw_hit"] += 1 + if raw_hit or enhance_hit: + stats["enhance_any_hit"] += 1 + if not raw_hit and enhance_hit: + stats["enhance_rescues"] += 1 + if raw_zero: + stats["zero_rescues"] += 1 + if raw_zero: + stats["raw_zero"] += 1 + if enhance_zero: + stats["enhance_zero"] += 1 + out[backend] = stats + return out + + +def _variant_rescue(cells: List[Cell]) -> dict: + """Count strict raw-miss rescues by input/backend/variant.""" + by_sample_input_backend = defaultdict(list) + for cell in cells: + by_sample_input_backend[(cell.sample_index, cell.input_lang, cell.backend)].append(cell) + out = defaultdict(lambda: {"rescues": 0}) + for (_sample_index, input_lang, backend), group in by_sample_input_backend.items(): + raw_cells = [cell for cell in group if cell.variant == "raw"] + enhance_cells = [cell for cell in group if cell.variant.startswith("enhance_")] + if not raw_cells or any(_strict_hit(cell) for cell in raw_cells): + continue + for cell in enhance_cells: + if _strict_hit(cell): + out[f"{input_lang}|{backend}|{cell.variant}"]["rescues"] += 1 + return dict(sorted(out.items())) + + +def _findings(overall: dict, rescue: dict, variant_rescue: dict) -> List[str]: + """Render compact measured conclusions for the current runtime.""" + raw_zero = sum(stats["raw_zero"] for stats in overall.values()) + zero_rescues = sum(stats["zero_rescues"] for stats in overall.values()) + lines = [ + "", + "## Findings", + "", + "* English improvement is mostly punctuation and case cleanup. The current runtime rescues raw misses via `enhance_lowercase_strip_punct` on every measured backend; broad lead-token probes are intentionally excluded from this report.", + "* Chinese improvement is directional and backend-specific. Simplified input is helped mainly by `zh_traditional`; Traditional/Hong Kong/Macau/Taiwan input is helped mainly by `zh_simplified`, with AniList showing the largest rescue counts.", + "* Japanese kana input is not mixed into generic Han transliteration. Pure-Han Japanese titles are script-ambiguous at runtime and may receive Chinese script folds, but those variants produced no strict Japanese raw-miss rescues.", + "* Korean input remains weak across the measured anime backends. The current runtime keeps Korean anime suggestions to raw because deterministic Hangul romanization did not prove a reliable strict raw-miss rescue path in this run.", + f"* Hit-zero improvement is limited and measurable: {zero_rescues}/{raw_zero} raw zero-return cells were rescued by current runtime variants. ANN is the main remaining low-recall cell, and adding more CJK transliteration mostly added noise rather than targeted successful queries.", + "", + "## Strict Rescue By Variant", + "", + "| input | backend | variant | strict rescues |", + "|---|---|---|---:|", + ] + if variant_rescue: + for key, stats in variant_rescue.items(): + input_lang, backend, variant = key.split("|", 2) + lines.append(f"| `{input_lang}` | `{backend}` | `{variant}` | {stats['rescues']} |") + else: + lines.append("| n/a | n/a | n/a | 0 |") + return lines + + +def write_reports( + cells_path: Path, + samples: List[dict], + out_dir: Path, + *, + proxy_used: bool, + elapsed: float, + runtime_only: bool = False, +) -> None: + all_cells = _read_cells(cells_path) + if runtime_only and all_cells: + current_values = _current_variant_values() + cells = [ + cell + for cell in all_cells + if (cell.variant, cell.query) + in current_values.get((cell.sample_index, cell.input_lang, cell.backend), set()) + ] + if len(cells) != len(all_cells): + _write_cells(cells_path, cells) + else: + cells = all_cells + rates = _rates(cells) + rescue = _rescue(cells) + overall = _overall_rescue(cells) + variant_rescue = _variant_rescue(cells) + input_counts = defaultdict(int) + for sample in samples: + for input_lang, _query in input_queries(sample): + input_counts[input_lang] += 1 + lines = [ + "# MAL Multilingual Anime100 Search Enhancement Evaluation", + "", + f"- samples: {len(samples)}", + f"- cells: {len(cells)}", + f"- proxy used: {proxy_used}", + "- input languages: ja, zh_cn, zh_hk_mo, zh_tw, ko, en", + "- baseline query: the representative real title for that input language; CJK scripts are not merged", + "- strict hit: backend ID match or exact known title/alias match; substring-only matches are excluded from rescue metrics", + "- raw hit: the unmodified input query found the target under the strict-hit rule", + "- raw + enhance hit: raw or any current runtime enhance suggestion found the target under the strict-hit rule", + "- enhance rescue: raw missed but at least one current runtime enhance suggestion found the target under the strict-hit rule", + "- zero rescue: raw returned no rows, and at least one current runtime enhance suggestion found the target under the strict-hit rule", + "- rescue rate: enhance rescues divided by raw misses for that row", + "- zero returned: upstream returned no rows, distinct from returning wrong rows", + ( + "- variant set: current runtime enhance output only; known aliases are used only for scoring the returned rows" + if runtime_only + else "- variant set: runtime enhance output plus exploratory local variants; known aliases are used only for scoring the returned rows" + ), + "", + "## Overall Backend Rescue", + "", + "| backend | cells | raw hit | raw zero | raw + enhance hit | enhance rescue | zero rescue | rescue rate | enhance zero |", + "|---|---:|---:|---:|---:|---:|---:|---:|---:|", + ] + for backend, stats in overall.items(): + n = stats["n"] or 1 + raw_misses = max(stats["n"] - stats["raw_hit"], 1) + lines.append( + f"| `{backend}` | {stats['n']} | {stats['raw_hit']} ({stats['raw_hit'] / n:.0%}) | " + f"{stats['raw_zero']} | {stats['enhance_any_hit']} ({stats['enhance_any_hit'] / n:.0%}) | " + f"+{stats['enhance_rescues']} | +{stats['zero_rescues']} | " + f"{stats['enhance_rescues'] / raw_misses:.0%} | {stats['enhance_zero']} |" + ) + lines.extend(_findings(overall, rescue, variant_rescue)) + lines.extend( + [ + "", + "## Language Matrix", + "", + "| input | backend | samples | raw hit | raw top1 | raw zero | raw + enhance hit | enhance top1 | enhance rescue | zero rescue | rescue rate | enhance zero |", + "|---|---|---:|---:|---:|---:|---:|---:|---:|---:|---:|---:|", + ] + ) + for input_lang in sorted(rescue): + for backend, stats in rescue[input_lang].items(): + n = stats["n"] or 1 + raw_misses = max(stats["n"] - stats["raw_hit"], 1) + lines.append( + f"| `{input_lang}` | `{backend}` | {stats['n']} | " + f"{stats['raw_hit']} ({stats['raw_hit'] / n:.0%}) | {stats['raw_top1']} | {stats['raw_zero']} | " + f"{stats['enhance_any_hit']} ({stats['enhance_any_hit'] / n:.0%}) | {stats['enhance_top1']} | " + f"+{stats['enhance_rescues']} | +{stats['zero_rescues']} | " + f"{stats['enhance_rescues'] / raw_misses:.0%} | " + f"{stats['enhance_zero']} |" + ) + lines.extend( + [ + "", + "## Variant Hit Rates", + "", + "| input | backend | variant | n | hits | hit rate | top1 | errors |", + "|---|---|---|---:|---:|---:|---:|---:|", + ] + ) + for key, stats in rates.items(): + input_lang, backend, variant = key.split("|", 2) + lines.append( + f"| `{input_lang}` | `{backend}` | `{variant}` | {stats['n']} | {stats['hits']} | " + f"{stats['hit_rate']:.0%} | {stats['top1']} | {stats['errors']} |" + ) + (out_dir / "summary.json").write_text( + json.dumps( + { + "input_counts": dict(sorted(input_counts.items())), + "rates": rates, + "rescue": rescue, + "overall": overall, + "variant_rescue": variant_rescue, + }, + ensure_ascii=False, + indent=2, + ) + + "\n", + encoding="utf-8", + ) + (out_dir / "summary.md").write_text("\n".join(lines) + "\n", encoding="utf-8") + (out_dir / "meta.json").write_text( + json.dumps({"elapsed_seconds": round(elapsed, 1), "proxy_used": proxy_used}, ensure_ascii=False, indent=2) + + "\n", + encoding="utf-8", + ) + print("\n".join(lines[:24]), flush=True) + print(f"wrote {out_dir}", flush=True) + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("--samples", default="tools/search_eval/samples/mal_multilingual_anime100_enriched.json") + parser.add_argument("--out", default="tools/search_eval/runs/mal_cjk100_current") + parser.add_argument("--limit", type=int, default=10) + parser.add_argument("--timeout", type=float, default=8.0) + parser.add_argument("--rate", choices=("normal", "slow"), default="normal") + parser.add_argument("--max-samples", type=int, default=100) + parser.add_argument("--backend", dest="backends", action="append") + parser.add_argument("--progress-every", type=int, default=25) + parser.add_argument("--resume", action="store_true") + parser.add_argument("--runtime-only", action="store_true") + parser.add_argument("--report-only", action="store_true") + parser.add_argument("--proxy-used", action="store_true") + args = parser.parse_args() + evaluate(args) + + +if __name__ == "__main__": + main() diff --git a/tools/search_eval/merge_title_enrichment.py b/tools/search_eval/merge_title_enrichment.py new file mode 100644 index 0000000..a61d2c4 --- /dev/null +++ b/tools/search_eval/merge_title_enrichment.py @@ -0,0 +1,171 @@ +"""Merge source-backed title-enrichment shards into the MAL CJK100 sample set.""" + +from __future__ import annotations + +import argparse +import json +from datetime import datetime, timezone +from pathlib import Path +from typing import Iterable, List, Optional + + +REGIONAL_FIELDS = ( + "chinese_titles_cn", + "chinese_titles_hk_mo", + "chinese_titles_tw", +) + + +def _now_iso() -> str: + return datetime.now(timezone.utc).replace(microsecond=0).isoformat().replace("+00:00", "Z") + + +def _title_key(item: dict) -> tuple: + return (item.get("title"), item.get("source"), item.get("url"), item.get("region")) + + +def _normalise_item(item: dict, *, region: Optional[str] = None) -> dict: + out = { + "title": item.get("title"), + "source": item.get("source"), + "url": item.get("url") or item.get("source_url"), + "confidence": item.get("confidence") or "medium", + } + if region: + out["region"] = region + if item.get("note"): + out["note"] = item["note"] + return {k: v for k, v in out.items() if v} + + +def _dedupe(items: Iterable[dict]) -> List[dict]: + out = [] + seen = set() + for item in items: + if not item.get("title"): + continue + key = _title_key(item) + if key in seen: + continue + seen.add(key) + out.append(item) + return out + + +def _union_chinese(sample: dict) -> list: + items = [] + for field, region in [ + ("chinese_titles_cn", "zh_cn"), + ("chinese_titles_hk_mo", "zh_hk_mo"), + ("chinese_titles_tw", "zh_tw"), + ]: + for item in sample.get(field) or []: + items.append(_normalise_item(item, region=region)) + for item in sample.get("chinese_titles") or []: + items.append(_normalise_item(item, region=item.get("region"))) + return _dedupe(items) + + +def _seed_regional_fields(sample: dict) -> None: + """Seed regional fields from existing coarse Chinese titles. + + The automatic source pass may only know that a title is Chinese, + not which market uses it. Keep those names in the union field, and + put clearly simplified-script aliases in ``zh_cn`` as a weak seed + until shard verification adds better regional attribution. + """ + for item in sample.get("chinese_titles") or []: + title = item.get("title") or "" + source = item.get("source") or "" + if item.get("region") in {"zh_cn", "zh_hk_mo", "zh_tw"}: + field = { + "zh_cn": "chinese_titles_cn", + "zh_hk_mo": "chinese_titles_hk_mo", + "zh_tw": "chinese_titles_tw", + }[item["region"]] + sample[field] = _dedupe([*(sample.get(field) or []), _normalise_item(item, region=item["region"])]) + elif source == "anilist_synonym" and title: + sample["chinese_titles_cn"] = _dedupe( + [*(sample.get("chinese_titles_cn") or []), _normalise_item(item, region="zh_cn")] + ) + + +def merge(base_path: Path, shard_paths: List[Path], output_path: Path) -> dict: + payload = json.loads(base_path.read_text(encoding="utf-8")) + for sample in payload["samples"]: + _seed_regional_fields(sample) + by_index = {i: sample for i, sample in enumerate(payload["samples"], 1)} + shard_meta = [] + for shard_path in shard_paths: + shard = json.loads(shard_path.read_text(encoding="utf-8")) + shard_meta.append({"path": str(shard_path), "shard": shard.get("shard"), "range": shard.get("range")}) + for item in shard.get("items", []): + sample = by_index[int(item["sample_index"])] + for field in REGIONAL_FIELDS: + merged = list(sample.get(field) or []) + merged.extend( + _normalise_item(v, region=field.replace("chinese_titles_", "zh_")) for v in item.get(field) or [] + ) + sample[field] = _dedupe(merged) + ko = list(sample.get("korean_titles") or []) + ko.extend(_normalise_item(v, region="ko") for v in item.get("korean_titles") or []) + sample["korean_titles"] = _dedupe(ko) + sample.setdefault("title_enrichment_notes", []) + sample["title_enrichment_notes"].extend(item.get("notes") or []) + sample["chinese_titles"] = _union_chinese(sample) + sample["chinese_title_cn"] = ( + sample["chinese_titles_cn"][0]["title"] if sample.get("chinese_titles_cn") else None + ) + sample["chinese_title_hk_mo"] = ( + sample["chinese_titles_hk_mo"][0]["title"] if sample.get("chinese_titles_hk_mo") else None + ) + sample["chinese_title_tw"] = ( + sample["chinese_titles_tw"][0]["title"] if sample.get("chinese_titles_tw") else None + ) + sample["korean_title"] = sample["korean_titles"][0]["title"] if sample.get("korean_titles") else None + for sample in payload["samples"]: + sample["chinese_titles"] = _union_chinese(sample) + sample["chinese_title_cn"] = ( + sample["chinese_titles_cn"][0]["title"] if sample.get("chinese_titles_cn") else None + ) + sample["chinese_title_hk_mo"] = ( + sample["chinese_titles_hk_mo"][0]["title"] if sample.get("chinese_titles_hk_mo") else None + ) + sample["chinese_title_tw"] = ( + sample["chinese_titles_tw"][0]["title"] if sample.get("chinese_titles_tw") else None + ) + sample["korean_title"] = sample["korean_titles"][0]["title"] if sample.get("korean_titles") else None + coverage = { + "samples": len(payload["samples"]), + "with_chinese_cn": sum(1 for sample in payload["samples"] if sample.get("chinese_titles_cn")), + "with_chinese_hk_mo": sum(1 for sample in payload["samples"] if sample.get("chinese_titles_hk_mo")), + "with_chinese_tw": sum(1 for sample in payload["samples"] if sample.get("chinese_titles_tw")), + "with_any_chinese": sum(1 for sample in payload["samples"] if sample.get("chinese_titles")), + "with_korean": sum(1 for sample in payload["samples"] if sample.get("korean_titles")), + } + payload["enrichment"] = { + **(payload.get("enrichment") or {}), + "merged_at_utc": _now_iso(), + "regional_chinese_fields": list(REGIONAL_FIELDS), + "shards": shard_meta, + "coverage": coverage, + } + output_path.write_text(json.dumps(payload, ensure_ascii=False, indent=2) + "\n", encoding="utf-8") + return coverage + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("--base", default="tools/search_eval/samples/mal_multilingual_anime100_autosourced.json") + parser.add_argument("--output", default="tools/search_eval/samples/mal_multilingual_anime100_enriched.json") + parser.add_argument("shards", nargs="*") + args = parser.parse_args() + shards = [Path(p) for p in args.shards] or sorted( + Path("tools/search_eval/samples").glob("title_enrichment_shard_*.json") + ) + coverage = merge(Path(args.base), shards, Path(args.output)) + print(json.dumps(coverage, ensure_ascii=False, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/tools/search_eval/runs/mal_cjk100_runtime/cells.jsonl b/tools/search_eval/runs/mal_cjk100_runtime/cells.jsonl new file mode 100644 index 0000000..d61fdb5 --- /dev/null +++ b/tools/search_eval/runs/mal_cjk100_runtime/cells.jsonl @@ -0,0 +1,4137 @@ +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "進撃の巨人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5853.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "進撃の巨人", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6123.8, "error": null, "top_titles": ["Attack on Titan", "AoT", "Attack on Titan Season 2", "Attack on Titan Season 3"], "top_ids": ["7442", "8671", "13569"]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "進撃の巨人", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6406.3, "error": null, "top_titles": ["Shingeki no Kyojin", "AoT", "SnK", "Shingeki no Kyojin Season 2", "進撃の巨人 Season2", "Attack on Titan Season 2", "Shingeki no Kyojin Season 3", "進撃の巨人 Season3"], "top_ids": [16498, 25777, 35760]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "進撃の巨人", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6768.4, "error": null, "top_titles": ["Shingeki no Kyojin", "Shingeki no Kyojin: Ano Hi Kara", "Shingeki no Kyojin Movie 2: Jiyuu no Tsubasa"], "top_ids": [16498, 19285, 23777]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "進撃の巨人", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7906.5, "error": null, "top_titles": ["Shingeki no Kyojin", "Attack on Titan", "進撃の巨人", "Shingeki no Kyojin: The Final Season", "Attack on Titan Final Season", "進撃の巨人 The Final Season", "Shingeki no Kyojin OVA", "Attack on Titan OVA"], "top_ids": [16498, 110277, 18397]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "进击的巨人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4172.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "进击的巨人", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2686.8, "error": null, "top_titles": ["Shingeki no Kyojin", "Attack on Titan", "進撃の巨人"], "top_ids": [16498]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "进击的巨人", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 4189.3, "error": null, "top_titles": ["Jinji de Ji Jia: Sheng Jie Fei Tuo", "Shiguang Dailiren Special: Xiaoyao Sanren de Weituo", "Kyojin no Hoshi (Movie)"], "top_ids": [47063, 49652, 17439]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "進擊的巨人", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 1745.2, "error": null, "top_titles": ["Shingeki no Kyojin", "Shingeki no Kyojin OVA", "Shingeki no Kyojin Season 2"], "top_ids": [16498, 18397, 25777]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "进击的巨人", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 7971.0, "error": null, "top_titles": ["Jinji de Ji Jia: Sheng Jie Fei Tuo", "进击的机甲之圣戒飞陀", "Mecha", "Aura Xing: Jinji Sheng Dian", "Aola Star", "Ao La Xing: Jinji Sheng Dian", "Shingeki no Kyojin", "AoT"], "top_ids": [47063, 44889, 16498]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "進擊的巨人", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3762.7, "error": null, "top_titles": ["Shingeki no Kyojin", "Shingeki no Kyojin OVA", "Shingeki no Kyojin Season 2"], "top_ids": [16498, 18397, 25777]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "進擊的巨人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8229.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "进击的巨人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12246.2, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "進擊的巨人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8478.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "进击的巨人", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 2489.8, "error": null, "top_titles": ["Jinji de Ji Jia: Sheng Jie Fei Tuo", "Shiguang Dailiren Special: Xiaoyao Sanren de Weituo", "Kyojin no Hoshi (Movie)"], "top_ids": [47063, 49652, 17439]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "進擊的巨人", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4729.3, "error": null, "top_titles": ["Shingeki no Kyojin", "AoT", "SnK", "Shingeki no Kyojin Season 2", "進撃の巨人 Season2", "Attack on Titan Season 2", "Shingeki no Kyojin Season 3", "進撃の巨人 Season3"], "top_ids": [16498, 25777, 35760]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "進擊的巨人", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2261.3, "error": null, "top_titles": ["Shingeki no Kyojin", "AoT", "SnK", "Shingeki no Kyojin Season 2", "進撃の巨人 Season2", "Attack on Titan Season 2", "Shingeki no Kyojin Season 3", "進撃の巨人 Season3"], "top_ids": [16498, 25777, 35760]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "進擊的巨人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3125.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "進擊的巨人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3942.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "進擊的巨人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6182.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "進擊的巨人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2435.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "进击的巨人", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 4169.3, "error": null, "top_titles": ["Shingeki no Kyojin", "Attack on Titan", "進撃の巨人"], "top_ids": [16498]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "进击的巨人", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 6869.7, "error": null, "top_titles": ["Jinji de Ji Jia: Sheng Jie Fei Tuo", "进击的机甲之圣戒飞陀", "Mecha", "Aura Xing: Jinji Sheng Dian", "Aola Star", "Ao La Xing: Jinji Sheng Dian", "Shingeki no Kyojin", "AoT"], "top_ids": [47063, 44889, 16498]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "進擊的巨人", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3349.0, "error": null, "top_titles": ["Shingeki no Kyojin", "AoT", "SnK", "Shingeki no Kyojin Season 2", "進撃の巨人 Season2", "Attack on Titan Season 2", "Shingeki no Kyojin Season 3", "進撃の巨人 Season3"], "top_ids": [16498, 25777, 35760]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "進擊的巨人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5280.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "进击的巨人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6154.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "进击的巨人", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 2930.9, "error": null, "top_titles": ["Jinji de Ji Jia: Sheng Jie Fei Tuo", "进击的机甲之圣戒飞陀", "Mecha", "Aura Xing: Jinji Sheng Dian", "Aola Star", "Ao La Xing: Jinji Sheng Dian", "Shingeki no Kyojin", "AoT"], "top_ids": [47063, 44889, 16498]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "진격의 거인", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13282.5, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "進擊的巨人", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 16394.8, "error": null, "top_titles": ["Shingeki no Kyojin", "Shingeki no Kyojin OVA", "Shingeki no Kyojin Season 2"], "top_ids": [16498, 18397, 25777]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "进击的巨人", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3487.1, "error": null, "top_titles": ["Shingeki no Kyojin", "Attack on Titan", "進撃の巨人"], "top_ids": [16498]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "진격의 거인", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 2033.0, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season", "Attack on Titan Final Season", "進撃の巨人 The Final Season"], "top_ids": [110277]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "진격의 거인", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4300.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "进击的巨人", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 5102.6, "error": null, "top_titles": ["Jinji de Ji Jia: Sheng Jie Fei Tuo", "Shiguang Dailiren Special: Xiaoyao Sanren de Weituo", "Kyojin no Hoshi (Movie)"], "top_ids": [47063, 49652, 17439]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Attack on Titan", "hit": true, "position": 7, "kind": "title_exact", "n_returned": 18, "duration_ms": 6272.1, "error": null, "top_titles": ["Attack on Titan: THE LAST ATTACK", "Yuichiro Hayashi", "Hiroshi Seko", "Attack on Titan: Distress", "Tetsuro Araki", "Yasuko Kobayashi", "Attack on Titan: A Sudden Visitor"], "top_ids": ["33310", "32706", "32705"]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Attack on Titan", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3637.9, "error": null, "top_titles": ["Shingeki no Kyojin", "AoT", "SnK", "Shingeki no Kyotou", "Shingeki no Kyojin: Attack on Skytree", "Attack on Titan", "Shingeki no Kyojin Movie: Kanketsu-hen - The Last Attack", "Attack on Titan the Movie: The Last Attack"], "top_ids": [16498, 35122, 59571]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Attack on Titan", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5161.8, "error": null, "top_titles": ["Shingeki no Kyojin", "Attack on Titan", "進撃の巨人", "Shingeki no Kyojin: The Final Season", "Attack on Titan Final Season", "進撃の巨人 The Final Season", "Shingeki no Kyojin OVA", "Attack on Titan OVA"], "top_ids": [16498, 110277, 18397]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "진격의 거인", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5538.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Attack on Titan", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2658.4, "error": null, "top_titles": ["Shingeki no Kyojin", "Shingeki no Kyotou", "Shingeki no Kyojin Movie: Kanketsu-hen - The Last Attack"], "top_ids": [16498, 35122, 59571]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "進擊的巨人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 16622.3, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4008.2, "error": null, "top_titles": ["Shingeki no Kyojin", "AoT", "SnK", "Shingeki no Kyotou", "Shingeki no Kyojin: Attack on Skytree", "Attack on Titan", "Shingeki no Kyojin Movie: Kanketsu-hen - The Last Attack", "Attack on Titan the Movie: The Last Attack"], "top_ids": [16498, 35122, 59571]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "进击的巨人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2576.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "デスノート", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3034.4, "error": null, "top_titles": ["Death Note", "DN", "デスノート"], "top_ids": [1535]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "진격의 거인", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 2616.2, "error": null, "top_titles": ["Kai: Geoul Hosuui Jeonseo"], "top_ids": ["13025"]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan", "hit": true, "position": 7, "kind": "title_exact", "n_returned": 18, "duration_ms": 6534.8, "error": null, "top_titles": ["Attack on Titan: THE LAST ATTACK", "Yuichiro Hayashi", "Hiroshi Seko", "Attack on Titan: Distress", "Tetsuro Araki", "Yasuko Kobayashi", "Attack on Titan: A Sudden Visitor"], "top_ids": ["33310", "32706", "32705"]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "ですのーと", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4100.7, "error": null, "top_titles": ["Takamiya Nasuno desu! Teekyuu Spin-off", "高宮なすのです!〜てーきゅうスピンオフ〜", "Takamiya Nasuno Desu!", "Takamiya Nasuno desu! Teekyuu Spin-off Special", "高宮なすのです!〜てーきゅうスピンオフ〜 TV未放送オリジナルエピソードアニメ", "Millepensee", "DearS: Kin no Tama desu no?", "DearS: A Ball Of Gold"], "top_ids": [28861, 31669, 1817]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "デスノート", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3553.8, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3775.9, "error": null, "top_titles": ["Shingeki no Kyojin", "Attack on Titan", "進撃の巨人", "Shingeki no Kyojin: The Final Season", "Attack on Titan Final Season", "進撃の巨人 The Final Season", "Shingeki no Kyojin OVA", "Attack on Titan OVA"], "top_ids": [16498, 110277, 18397]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Attack on Titan", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5424.4, "error": null, "top_titles": ["Attack on Titan", "AoT", "Attack on Titan Season 2", "Attack on Titan Season 3"], "top_ids": ["7442", "8671", "13569"]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "死亡笔记", "hit": false, "position": null, "kind": "", "n_returned": 8, "duration_ms": 3410.4, "error": null, "top_titles": ["Daomu Biji Zhi Qinling Shen Shu", "Dao Mu Bi Ji: Qin Ling Shen Shu", "Grave Robbers' Chronicles", "Shibou Yuugi de Meshi wo Kuu.", "死亡遊戯で飯を食う。", "Shiboyugi: Playing Death Games to Put Food on the Table", "Xing Qia Meng Shao Nu: Hua Yu Bi Ji", "Star Card Dream Girls"], "top_ids": [48481, 59711, 57060]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "ですのーと", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3168.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "デスノート", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3282.5, "error": null, "top_titles": ["DEATH NOTE", "Death Note"], "top_ids": [1535]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12296.8, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "死亡筆記", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 2775.8, "error": null, "top_titles": ["Shibou Yuugi de Meshi wo Kuu.", "死亡遊戯で飯を食う。", "Shiboyugi: Playing Death Games to Put Food on the Table", "Shibou Yuugi de Meshi wo Kuu. 44: Cloudy Beach", "死亡遊戯で飯を食う。44:CLOUDY BEACH", "Shiboyugi: Playing Death Games to Put Food on the Table: 44 - Cloudy Beach"], "top_ids": [59711, 63819, 63819]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "死亡笔记", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2979.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "デスノート", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2683.0, "error": null, "top_titles": ["Death Note"], "top_ids": [1535]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "ですのーと", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4755.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "死亡筆記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2704.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "死亡筆記", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 4009.9, "error": null, "top_titles": ["Shibou Yuugi de Meshi wo Kuu.", "死亡遊戯で飯を食う。", "Shiboyugi: Playing Death Games to Put Food on the Table", "Shibou Yuugi de Meshi wo Kuu. 44: Cloudy Beach", "死亡遊戯で飯を食う。44:CLOUDY BEACH", "Shiboyugi: Playing Death Games to Put Food on the Table: 44 - Cloudy Beach"], "top_ids": [59711, 63819, 63819]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "ですのーと", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3972.2, "error": null, "top_titles": ["Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita", "Wooser no Sono Higurashi: Ken to Pants to Wooser to", "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita 2nd"], "top_ids": [44037, 16738, 53488]} +{"sample_index": 1, "mal_id": 16498, "popularity": 1, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3629.7, "error": null, "top_titles": ["Attack on Titan", "AoT", "Attack on Titan Season 2", "Attack on Titan Season 3"], "top_ids": ["7442", "8671", "13569"]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "死亡筆記本", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2642.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "死亡笔记", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3364.6, "error": null, "top_titles": ["DEATH NOTE", "Death Note"], "top_ids": [1535]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "死亡笔记", "hit": false, "position": null, "kind": "", "n_returned": 8, "duration_ms": 2962.5, "error": null, "top_titles": ["Daomu Biji Zhi Qinling Shen Shu", "Dao Mu Bi Ji: Qin Ling Shen Shu", "Grave Robbers' Chronicles", "Shibou Yuugi de Meshi wo Kuu.", "死亡遊戯で飯を食う。", "Shiboyugi: Playing Death Games to Put Food on the Table", "Xing Qia Meng Shao Nu: Hua Yu Bi Ji", "Star Card Dream Girls"], "top_ids": [48481, 59711, 57060]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "デスノート", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 1898.5, "error": null, "top_titles": ["Death Note", "DN"], "top_ids": ["1376"]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "死亡筆記本", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 2865.5, "error": null, "top_titles": ["Shibou Yuugi de Meshi wo Kuu.", "死亡遊戯で飯を食う。", "Shiboyugi: Playing Death Games to Put Food on the Table", "Shibou Yuugi de Meshi wo Kuu. 44: Cloudy Beach", "死亡遊戯で飯を食う。44:CLOUDY BEACH", "Shiboyugi: Playing Death Games to Put Food on the Table: 44 - Cloudy Beach"], "top_ids": [59711, 63819, 63819]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "ですのーと", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2889.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "死亡筆記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4402.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "데스노트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4987.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "死亡笔记本", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3249.9, "error": null, "top_titles": ["Zeikin de Katta Hon", "Books Bought with Tax", "税金で買った本", "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen", "本好きの下剋上 ~司書になるためには手段を選んでいられません~", "Ascendance of a Bookworm", "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", "Ascendance of a Bookworm 2nd Season"], "top_ids": [63573, 39468, 40815]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "死亡筆記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2555.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Death Note", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 3, "duration_ms": 3413.6, "error": null, "top_titles": ["Death Note Relight 2 - L's Successors", "Tetsuro Araki", "Toshiki Inoue", "Death Note Relight - Visions of a God", "Death Note"], "top_ids": ["15220", "10810", "6592"]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "死亡笔记", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4773.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "데스노트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2764.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "死亡笔记", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3316.7, "error": null, "top_titles": ["DEATH NOTE", "Death Note"], "top_ids": [1535]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "死亡笔记", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12264.1, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Death Note", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4000.1, "error": null, "top_titles": ["Death Note", "DN", "デスノート", "Death Note: Rewrite", "Death Note Director's Cut: The Complete Ending Edition Special", "Death Note Special", "Nido to Mezamenu Komoriuta", "Nidoto Mezamenu Komori Uta"], "top_ids": [1535, 2994, 7273]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "死亡筆記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6064.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "death note", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 3, "duration_ms": 5440.6, "error": null, "top_titles": ["Death Note Relight 2 - L's Successors", "Tetsuro Araki", "Toshiki Inoue", "Death Note Relight - Visions of a God", "Death Note"], "top_ids": ["15220", "10810", "6592"]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "死亡筆記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4816.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "鋼の錬金術師 FULLMETAL ALCHEMIST", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3245.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "死亡笔记", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2764.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "死亡筆記本", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12283.0, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "death note", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4579.7, "error": null, "top_titles": ["Death Note", "DN", "デスノート", "Death Note: Rewrite", "Death Note Director's Cut: The Complete Ending Edition Special", "Death Note Special", "Nido to Mezamenu Komoriuta", "Nidoto Mezamenu Komori Uta"], "top_ids": [1535, 2994, 7273]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "钢之炼金术师 FULLMETAL ALCHEMIST", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2283.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "死亡筆記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13224.9, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "死亡筆記本", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3784.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "鋼の錬金術師 FULLMETAL ALCHEMIST", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3627.7, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi: Fullmetal Alchemist", "Fullmetal Alchemist (2009)", "Fullmetal Alchemist", "Hagane no Renkinjutsushi", "FMA", "Fullmetal Alchemist: Brotherhood Specials", "Moumoku no Renkinjutsushi"], "top_ids": [5114, 121, 6421]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "死亡筆記", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3410.7, "error": null, "top_titles": ["Shibou Yuugi de Meshi wo Kuu.", "Shibou Yuugi de Meshi wo Kuu. 44: Cloudy Beach", "Code Geass: Boukoku no Akito 4 - Nikushimi no Kioku kara"], "top_ids": [59711, 63819, 15201]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "死亡笔记本", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3863.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "鋼之鍊金術師FA", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7810.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "데스노트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3650.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "死亡笔记本", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12332.9, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "死亡笔记", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 7094.8, "error": null, "top_titles": ["Daomu Biji Zhi Qinling Shen Shu", "Laoshu Biji: Xing You Tianxia", "Laoshu Biji: Tanmi Chengshi"], "top_ids": [48481, 46997, 46999]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Death Note", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2559.3, "error": null, "top_titles": ["Death Note", "DN", "Death Note: Rewrite", "Death Note Director's Cut: The Complete Ending Edition Special", "Death Note Special", "HeatGuy J Special", "HeatGuy J: Captive - Angel", "Habitat Ground Jewdo Special"], "top_ids": ["1376", "2707", "1594"]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "데스노트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2284.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "死亡筆記本", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4355.6, "error": null, "top_titles": ["Nippon Animation 50-shuunen Kinen Movie", "Shibou Yuugi de Meshi wo Kuu.", "Mob Psycho 100: Tankoubon Hatsubai Kinen Anime"], "top_ids": [61771, 59711, 52134]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "钢之炼金术师 FULLMETAL ALCHEMIST", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13026.5, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Death Note", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2703.5, "error": null, "top_titles": ["DEATH NOTE", "Death Note", "DEATH NOTE Rewrite", "Death Note: Relight", "DEATH NOTE リライト"], "top_ids": [1535, 2994]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "鋼之鍊金術師FA", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9618.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "death note", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3351.9, "error": null, "top_titles": ["Death Note", "DN", "Death Note: Rewrite", "Death Note Director's Cut: The Complete Ending Edition Special", "Death Note Special", "HeatGuy J Special", "HeatGuy J: Captive - Angel", "Habitat Ground Jewdo Special"], "top_ids": ["1376", "2707", "1594"]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "death note", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2797.4, "error": null, "top_titles": ["DEATH NOTE", "Death Note", "DEATH NOTE Rewrite", "Death Note: Relight", "DEATH NOTE リライト"], "top_ids": [1535, 2994]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "강철의 연금술사 BROTHERHOOD", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7503.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "鋼の錬金術師 FULLMETAL ALCHEMIST", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 3581.9, "error": null, "top_titles": ["Hagane no Renkinjutsushi: FULLMETAL ALCHEMIST", "Fullmetal Alchemist: Brotherhood", "鋼の錬金術師 FULLMETAL ALCHEMIST", "Hagane no Renkinjutsushi: FULLMETAL ALCHEMIST Mihousou Episode", "Fullmetal Alchemist: Brotherhood OVA Collection", "鋼の錬金術師 FULLMETAL ALCHEMIST 未放送エピソード", "Hagane no Renkinjutsushi: FULLMETAL ALCHEMIST - Arakawa Hiromu Kaki Oroshi 4-koma Gekijou", "Fullmetal Alchemist: Brotherhood: 4-Koma Theater"], "top_ids": [5114, 6421, 7902]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "死亡笔记本", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12176.5, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "鋼之鍊金術師 FULLMETAL ALCHEMIST", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12165.4, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Fullmetal Alchemist: Brotherhood", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 4112.2, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Yasuhiro Irie", "Hiroshi Ōnogi"], "top_ids": ["14079", "10216"]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "鋼の錬金術師 FULLMETAL ALCHEMIST", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 8977.3, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi (2009)", "Fullmetal Alchemist (2009)", "Fullmetal Alchemist", "FMA", "Full Metal Alchemist", "Fullmetal Alchemist: Brotherhood Specials", "Moumoku no Renkinjutsushi"], "top_ids": ["3936", "100", "4555"]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "钢之炼金术师 FULLMETAL ALCHEMIST", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 5318.3, "error": null, "top_titles": ["Hagane no Renkinjutsushi: FULLMETAL ALCHEMIST", "Fullmetal Alchemist: Brotherhood", "鋼の錬金術師 FULLMETAL ALCHEMIST"], "top_ids": [5114]} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "데스노트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3622.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "钢之炼金术师 FULLMETAL ALCHEMIST", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3006.3, "error": null, "top_titles": ["Fullmetal Alchemist", "FMA", "Full Metal Alchemist", "Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi (2009)", "Fullmetal Alchemist (2009)", "Fullmetal Alchemist: Brotherhood Specials", "Moumoku no Renkinjutsushi"], "top_ids": ["100", "3936", "4555"]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "鋼之鍊金術師FA", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4571.4, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi: Fullmetal Alchemist", "Fullmetal Alchemist (2009)", "Fullmetal Alchemist", "Hagane no Renkinjutsushi", "FMA", "Fullmetal Alchemist: The Conqueror of Shamballa", "Gekijyouban Hagane no Renkinjutsushi - Shanbara wo Yuku Mono"], "top_ids": [5114, 121, 430]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "鋼之鍊金術師 FULLMETAL ALCHEMIST", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2657.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "鋼之鍊金術師FA", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2064.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Death Note", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3804.2, "error": null, "top_titles": ["Death Note", "Death Note: Rewrite", "Kamisama no Memochou"], "top_ids": [1535, 2994, 10568]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "钢之炼金术师FA", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2848.0, "error": null, "top_titles": ["Yuzhou Huwei Dui: Gang Jia Bawang Long", "Yuzhou Huwei Dui 4", "宇宙护卫队之钢甲霸王龙", "Wu Liuqi: Zui Qiang Fa Xing Shi", "Scissor Seven Season 2", "Cike Wu Liuqi 2nd Season", "Xiao Song Shu Li Fa Shi", "Little Squirrel Barber"], "top_ids": [57317, 40784, 43534]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "钢之炼金术师FA", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1983.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "鋼之鍊金術師 FULLMETAL ALCHEMIST", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5104.1, "error": null, "top_titles": ["Fullmetal Alchemist", "FMA", "Full Metal Alchemist", "Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi (2009)", "Fullmetal Alchemist (2009)", "Fullmetal Alchemist: Brotherhood Specials", "Moumoku no Renkinjutsushi"], "top_ids": ["100", "3936", "4555"]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "鋼之鍊金術師FA", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2600.8, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi: Fullmetal Alchemist", "Fullmetal Alchemist (2009)", "Fullmetal Alchemist", "Hagane no Renkinjutsushi", "FMA", "Fullmetal Alchemist: The Conqueror of Shamballa", "Gekijyouban Hagane no Renkinjutsushi - Shanbara wo Yuku Mono"], "top_ids": [5114, 121, 430]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "鋼之鍊金術師FA", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1968.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "fullmetal alchemist brotherhood", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5981.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "鋼之鍊金術師FA", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4781.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "钢之炼金术师FA", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5451.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "钢之炼金术师FA", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2798.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ワンパンマン", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5324.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "강철의 연금술사 BROTHERHOOD", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3324.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "钢之炼金术师FA", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12334.9, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 2, "mal_id": 1535, "popularity": 2, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "death note", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 12628.1, "error": null, "top_titles": ["Death Note", "Death Note: Rewrite", "Kamisama no Memochou"], "top_ids": [1535, 2994, 10568]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "鋼之鍊金術師FA", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5906.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Fullmetal Alchemist: Brotherhood", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 4049.0, "error": null, "top_titles": ["Hagane no Renkinjutsushi: FULLMETAL ALCHEMIST", "Fullmetal Alchemist: Brotherhood", "鋼の錬金術師 FULLMETAL ALCHEMIST", "Hagane no Renkinjutsushi: FULLMETAL ALCHEMIST Mihousou Episode", "Fullmetal Alchemist: Brotherhood OVA Collection", "鋼の錬金術師 FULLMETAL ALCHEMIST 未放送エピソード", "Hagane no Renkinjutsushi: FULLMETAL ALCHEMIST - Arakawa Hiromu Kaki Oroshi 4-koma Gekijou", "Fullmetal Alchemist: Brotherhood: 4-Koma Theater"], "top_ids": [5114, 6421, 7902]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "강철의 연금술사 BROTHERHOOD", "hit": true, "position": 1, "kind": "id", "n_returned": 4, "duration_ms": 3960.1, "error": null, "top_titles": ["Brotherhood: Final Fantasy XV", "BROTHERHOOD FINAL FANTASY XV", "Brotherhood Final Fantasy XV", "Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi: Fullmetal Alchemist", "Fullmetal Alchemist (2009)", "Fullmetal Alchemist: Brotherhood Specials", "Moumoku no Renkinjutsushi"], "top_ids": [33080, 5114, 6421]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "鋼の錬金術師 FULLMETAL ALCHEMIST", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3969.9, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Fullmetal Alchemist: The Sacred Star of Milos", "Fullmetal Alchemist: Reflections"], "top_ids": [5114, 9135, 664]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "わんぱんまん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7698.4, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Fullmetal Alchemist: Brotherhood", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2476.4, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi: Fullmetal Alchemist", "Fullmetal Alchemist (2009)", "Fullmetal Alchemist: Brotherhood Specials", "Moumoku no Renkinjutsushi", "The Blind Alchemist", "Fullmetal Alchemist: Brotherhood - 4-koma Gekijou", "Hagane no Renkinjutsushi: Hagaren 4-koma Gekijou"], "top_ids": [5114, 6421, 7902]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "钢之炼金术师 FULLMETAL ALCHEMIST", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2572.9, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Meishu Guan Zhi Ye: Jindai Guowai Meishu Pian", "Jinwu Wei: Feng Qi Jinling"], "top_ids": [5114, 46434, 58876]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "fullmetal alchemist brotherhood", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2435.0, "error": null, "top_titles": ["Hagane no Renkinjutsushi: FULLMETAL ALCHEMIST", "Fullmetal Alchemist: Brotherhood", "鋼の錬金術師 FULLMETAL ALCHEMIST", "Hagane no Renkinjutsushi: FULLMETAL ALCHEMIST Mihousou Episode", "Fullmetal Alchemist: Brotherhood OVA Collection", "鋼の錬金術師 FULLMETAL ALCHEMIST 未放送エピソード", "Hagane no Renkinjutsushi: FULLMETAL ALCHEMIST - Arakawa Hiromu Kaki Oroshi 4-koma Gekijou", "Fullmetal Alchemist: Brotherhood: 4-Koma Theater"], "top_ids": [5114, 6421, 7902]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "一拳超人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4000.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ワンパンマン", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 1675.9, "error": null, "top_titles": ["One Punch Man", "One-Punch Man", "ワンパンマン", "One Punch Man 3", "One-Punch Man Season 3", "ワンパンマン3", "One Punch Man 2", "One-Punch Man Season 2"], "top_ids": [21087, 153800, 97668]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "一拳超人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1858.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "鋼之鍊金術師 FULLMETAL ALCHEMIST", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4713.6, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Fullmetal Alchemist: Brotherhood Specials", "Fullmetal Alchemist"], "top_ids": [5114, 6421, 121]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "わんぱんまん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3676.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "一拳超人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2393.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "鋼之鍊金術師FA", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2546.8, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood Specials", "Fullmetal Alchemist", "Fullmetal Alchemist: Brotherhood"], "top_ids": [6421, 121, 5114]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "一拳超人", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3061.8, "error": null, "top_titles": ["One Punch Man", "One-Punch Man", "ワンパンマン", "One Punch Man 2", "One-Punch Man Season 2", "ワンパンマン 2"], "top_ids": [21087, 97668]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "fullmetal alchemist brotherhood", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3866.0, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi: Fullmetal Alchemist", "Fullmetal Alchemist (2009)", "Fullmetal Alchemist: Brotherhood Specials", "Moumoku no Renkinjutsushi", "The Blind Alchemist", "Fullmetal Alchemist: Brotherhood - 4-koma Gekijou", "Hagane no Renkinjutsushi: Hagaren 4-koma Gekijou"], "top_ids": [5114, 6421, 7902]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "원펀맨", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3675.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "钢之炼金术师FA", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 19037.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ワンパンマン", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4091.3, "error": null, "top_titles": ["One Punch Man", "One Punch-Man", "OPM", "One Punch Man 2nd Season", "One Punch-Man 2", "One-Punch Man 2", "One Punch Man Specials", "ワンパンマン"], "top_ids": [30276, 34134, 31772]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "钢之炼金术师FA", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 7529.3, "error": null, "top_titles": ["Meishu Guan Zhi Ye: Jindai Guowai Meishu Pian", "Jinwu Wei: Feng Qi Jinling", "Meishu Guan Zhi Ye: Jindai Zhongguo Meishu Pian"], "top_ids": [46434, 58876, 46433]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "一拳超人", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 6709.8, "error": null, "top_titles": ["One Punch Man", "One-Punch Man", "ワンパンマン", "One Punch Man 2", "One-Punch Man Season 2", "ワンパンマン 2"], "top_ids": [21087, 97668]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "강철의 연금술사 BROTHERHOOD", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 3177.6, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood Specials", "Moumoku no Renkinjutsushi", "The Blind Alchemist", "Brotherhood: Final Fantasy XV", "Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi (2009)", "Fullmetal Alchemist (2009)"], "top_ids": ["4555", "12019", "3936"]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "One-Punch Man", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6311.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "わんぱんまん", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3621.0, "error": null, "top_titles": ["Ichijouma Mankitsugurashi!", "一畳間まんきつ暮らし!", "Ichijyoma Mankitsu Gurashi!", "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 3rd Season", "Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game", "Shanfro", "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su"], "top_ids": [62018, 61338, 52347]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "一拳超人", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3129.1, "error": null, "top_titles": ["One Punch Man", "One-Punch Man", "ワンパンマン", "One Punch Man 2", "One-Punch Man Season 2", "ワンパンマン 2"], "top_ids": [21087, 97668]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Fullmetal Alchemist: Brotherhood", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 3654.2, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi (2009)", "Fullmetal Alchemist (2009)", "Fullmetal Alchemist: Brotherhood Specials", "Moumoku no Renkinjutsushi", "The Blind Alchemist", "Fullmetal Alchemist: Brotherhood: 4-Koma Theater", "Hagane no Renkinjutsushi: 4-Koma Theater"], "top_ids": ["3936", "4555", "5154"]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "鋼之鍊金術師FA", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 5757.5, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood Specials", "Fullmetal Alchemist", "Fullmetal Alchemist: Brotherhood"], "top_ids": [6421, 121, 5114]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "원펀맨", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4773.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "one punch man", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 8164.6, "error": null, "top_titles": ["One Punch Man", "Yūsuke Murata", "ONE", "Shinpei Nagai", "Tomohiro Suzuki", "Chikara Sakurai"], "top_ids": ["38200", "26230", "24088"]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "钢之炼金术师FA", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4326.6, "error": null, "top_titles": ["Meishu Guan Zhi Ye: Jindai Guowai Meishu Pian", "Jinwu Wei: Feng Qi Jinling", "Meishu Guan Zhi Ye: Jindai Zhongguo Meishu Pian"], "top_ids": [46434, 58876, 46433]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "One-Punch Man", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 3049.0, "error": null, "top_titles": ["One Punch Man", "One-Punch Man", "ワンパンマン", "One Punch Man OVA", "One-Punch Man OVA", "ワンパンマン OVA", "One Punch Man 3", "One-Punch Man Season 3"], "top_ids": [21087, 21416, 153800]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "鬼滅の刃", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3522.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "一拳超人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 10984.8, "error": null, "top_titles": ["Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", "Super Human High Schoolers Are in Another World", "But Seem to be Living in Comfort!", "Concrete Revolutio: Choujin Gensou", "ConRevo", "コンクリート・レボルティオ~超人幻想~", "Concrete Revolutio: Choujin Gensou - The Last Song", "コンクリート・レボルティオ~超人幻想~THE LAST SONG"], "top_ids": [39523, 31147, 32313]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "강철의 연금술사 BROTHERHOOD", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2913.8, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Fullmetal Alchemist: Brotherhood Specials", "Brotherhood: Final Fantasy XV"], "top_ids": [5114, 6421, 33080]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "one punch man", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 2552.7, "error": null, "top_titles": ["One Punch Man", "One-Punch Man", "ワンパンマン", "One Punch Man 3", "One-Punch Man Season 3", "ワンパンマン3", "One Punch Man OVA", "One-Punch Man OVA"], "top_ids": [21087, 153800, 21416]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "fullmetal alchemist brotherhood", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 6003.2, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi (2009)", "Fullmetal Alchemist (2009)", "Fullmetal Alchemist: Brotherhood Specials", "Moumoku no Renkinjutsushi", "The Blind Alchemist", "Fullmetal Alchemist: Brotherhood: 4-Koma Theater", "Hagane no Renkinjutsushi: 4-Koma Theater"], "top_ids": ["3936", "4555", "5154"]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "一拳超人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2136.2, "error": null, "top_titles": ["Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", "Super Human High Schoolers Are in Another World", "But Seem to be Living in Comfort!", "Concrete Revolutio: Choujin Gensou", "ConRevo", "コンクリート・レボルティオ~超人幻想~", "Concrete Revolutio: Choujin Gensou - The Last Song", "コンクリート・レボルティオ~超人幻想~THE LAST SONG"], "top_ids": [39523, 31147, 32313]} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Fullmetal Alchemist: Brotherhood", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3188.6, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Fullmetal Alchemist: Brotherhood Specials", "Fullmetal Alchemist: Brotherhood - 4-koma Gekijou"], "top_ids": [5114, 6421, 7902]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ワンパンマン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 9, "duration_ms": 2012.0, "error": null, "top_titles": ["One Punch Man", "One Punch-Man", "OPM", "One Punch Man Specials", "One Punch Man 2nd Season Specials"], "top_ids": ["10740", "11430", "42703"]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "鬼滅の刃", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3131.1, "error": null, "top_titles": ["Kimetsu no Yaiba", "Demon Slayer: Kimetsu no Yaiba", "鬼滅の刃", "Kimetsu no Yaiba: Yuukaku-hen", "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", "鬼滅の刃 遊郭編", "Kimetsu no Yaiba: Hashira Geiko-hen", "Demon Slayer: Kimetsu no Yaiba Hashira Training Arc"], "top_ids": [101922, 142329, 166240]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "わんぱんまん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2139.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "一拳超人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4352.4, "error": null, "top_titles": ["Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", "Super Human High Schoolers Are in Another World", "But Seem to be Living in Comfort!", "Concrete Revolutio: Choujin Gensou", "ConRevo", "コンクリート・レボルティオ~超人幻想~", "Concrete Revolutio: Choujin Gensou - The Last Song", "コンクリート・レボルティオ~超人幻想~THE LAST SONG"], "top_ids": [39523, 31147, 32313]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "鬼灭之刃", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 3189.6, "error": null, "top_titles": ["Kimetsu no Yaiba", "Demon Slayer: Kimetsu no Yaiba", "鬼滅の刃", "Kimetsu no Yaiba: Mugen Ressha-hen (TV)", "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", "鬼滅の刃 無限列車編 (TV)", "Kimetsu no Yaiba: Mugen Ressha-hen", "Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train"], "top_ids": [101922, 129874, 112151]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "一拳超人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2975.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "鬼滅之刃", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1889.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "원펀맨", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3630.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "一拳超人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2991.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 3, "mal_id": 5114, "popularity": 3, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "fullmetal alchemist brotherhood", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3552.7, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Fullmetal Alchemist: Brotherhood Specials", "Fullmetal Alchemist: Brotherhood - 4-koma Gekijou"], "top_ids": [5114, 6421, 7902]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "鬼灭之刃", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12333.8, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "鬼滅之刃", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4055.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "一拳超人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2639.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ワンパンマン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 9, "duration_ms": 3281.6, "error": null, "top_titles": ["One Punch Man", "One Punch Man Specials", "One Punch Man: Road to Hero"], "top_ids": [30276, 31772, 31704]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "鬼滅之刃", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4345.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "원펀맨", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2337.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "鬼灭之刃", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 4124.4, "error": null, "top_titles": ["Kimetsu no Yaiba", "Demon Slayer: Kimetsu no Yaiba", "鬼滅の刃", "Kimetsu no Yaiba: Mugen Ressha-hen (TV)", "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", "鬼滅の刃 無限列車編 (TV)", "Kimetsu no Yaiba: Mugen Ressha-hen", "Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train"], "top_ids": [101922, 129874, 112151]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "One-Punch Man", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 1774.7, "error": null, "top_titles": ["One Punch Man", "One Punch-Man", "OPM", "One Punch Man 2", "One Punch-Man 2", "OPM 2", "One Punch Man: Road to Hero", "One Punch Man OVA"], "top_ids": ["10740", "12566", "11402"]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "鬼滅之刃", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3489.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "one punch man", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2417.9, "error": null, "top_titles": ["One Punch Man", "One Punch-Man", "OPM", "One Punch Man 2", "One Punch-Man 2", "OPM 2", "One Punch Man: Road to Hero", "One Punch Man OVA"], "top_ids": ["10740", "12566", "11402"]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "鬼滅之刃", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3823.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "귀멸의 칼날", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2818.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "鬼滅の刃", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3210.4, "error": null, "top_titles": ["Kimetsu no Yaiba", "Blade of Demon Destruction", "KnY", "Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba 2", "Demon Slayer: Kimetsu no Yaiba Season 2", "Kimetsu no Yaiba: Natagumo Yama Hen"], "top_ids": ["41370", "44081", "44389"]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "One-Punch Man", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14260.9, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "鬼灭之刃", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3970.9, "error": null, "top_titles": ["Kimetsu no Yaiba", "Blade of Demon Destruction", "KnY"], "top_ids": ["41370"]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "鬼灭之刃", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 7093.9, "error": null, "top_titles": ["Kimetsu no Yaiba", "Demon Slayer: Kimetsu no Yaiba", "鬼滅の刃", "Kimetsu no Yaiba: Mugen Ressha-hen (TV)", "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", "鬼滅の刃 無限列車編 (TV)", "Kimetsu no Yaiba: Mugen Ressha-hen", "Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train"], "top_ids": [101922, 129874, 112151]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Demon Slayer: Kimetsu no Yaiba", "hit": true, "position": 7, "kind": "title_exact", "n_returned": 8, "duration_ms": 6494.2, "error": null, "top_titles": ["Demon Slayer: Kimetsu no Yaiba Infinity Castle", "Hikaru Kondo", "Haruo Sotozaki", "Demon Slayer: Kimetsu no Yaiba Hashira Training Arc", "Hideki Hosokawa", "Demon Slayer: Kimetsu no Yaiba Swordsmith Village Arc"], "top_ids": ["32858", "28695", "25353"]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "one punch man", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6740.0, "error": null, "top_titles": ["One Punch Man", "One Punch-Man", "OPM", "One Punch Man 3 Part 2", "One Punch Man 3rd Season Part 2", "OPM 3", "One Punch Man 2nd Season: Ichigeki de Wakaru! Maji Furikaeri!", "One-Punch Man Season 3 Episode 0"], "top_ids": [30276, 63193, 62653]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "わんぱんまん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 16554.8, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "鬼滅之刃", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4003.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "鬼滅の刃", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3693.1, "error": null, "top_titles": ["Kimetsu no Yaiba", "Blade of Demon Destruction", "鬼滅の刃", "Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編", "Demon Slayer: Kimetsu no Yaiba - The Movie 3: Infinity Castle", "Kimetsu no Yaiba Movie 2: Mugenjou-hen", "Demon Slayer: Kimetsu no Yaiba - The Movie 2: Infinity Castle"], "top_ids": [38000, 62547, 62546]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "귀멸의 칼날", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 6765.2, "error": null, "top_titles": ["Kimetsu no Yaiba", "Demon Slayer: Kimetsu no Yaiba", "鬼滅の刃", "Kimetsu no Yaiba: Mugen Ressha-hen (TV)", "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", "鬼滅の刃 無限列車編 (TV)", "Kimetsu no Yaiba: Mugen Ressha-hen", "Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train"], "top_ids": [101922, 129874, 112151]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Demon Slayer: Kimetsu no Yaiba", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 2260.2, "error": null, "top_titles": ["Kimetsu no Yaiba", "Demon Slayer: Kimetsu no Yaiba", "鬼滅の刃", "Kimetsu no Yaiba: Mugen Ressha-hen (TV)", "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", "鬼滅の刃 無限列車編 (TV)", "Kimetsu no Yaiba: Mugenjou-hen Movie 1 - Akaza Sairai", "Demon Slayer: Kimetsu no Yaiba Infinity Castle"], "top_ids": [101922, 129874, 178788]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "鬼滅之刃", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5390.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "鬼灭之刃", "hit": true, "position": 8, "kind": "id", "n_returned": 10, "duration_ms": 3150.7, "error": null, "top_titles": ["Oni", "The Demon", "鬼", "Kenki Virgo", "Sword Demon Virgo", "剣鬼バルゴ", "Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編"], "top_ids": [7171, 63026, 62547]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "鬼灭之刃", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3685.4, "error": null, "top_titles": ["Kimetsu no Yaiba", "Blade of Demon Destruction", "KnY"], "top_ids": ["41370"]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "demon slayer kimetsu no yaiba", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 4299.6, "error": null, "top_titles": ["Kimetsu no Yaiba", "Demon Slayer: Kimetsu no Yaiba", "鬼滅の刃", "Kimetsu no Yaiba: Mugen Ressha-hen (TV)", "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", "鬼滅の刃 無限列車編 (TV)", "Kimetsu no Yaiba: Mugenjou-hen Movie 1 - Akaza Sairai", "Demon Slayer: Kimetsu no Yaiba Infinity Castle"], "top_ids": [101922, 129874, 178788]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "鬼滅之刃", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4896.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "鬼灭之刃", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2826.5, "error": null, "top_titles": ["Kimetsu no Yaiba", "Blade of Demon Destruction", "KnY"], "top_ids": ["41370"]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "一拳超人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 17362.3, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "귀멸의 칼날", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2489.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "demon slayer kimetsu no yaiba", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12186.9, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "鬼滅之刃", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 15608.2, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "一拳超人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4778.4, "error": null, "top_titles": ["Chouyaku Hyakuninisshu: Uta Koi.", "Chouyaku Hyakuninisshu: Uta Koi. - Sake to Kikoushi: Murasaki Shikibu to Kintou", "Kinnikuman: Seigi Choujin vs. Kodai Choujin"], "top_ids": [13349, 16119, 3275]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 9988.0, "error": null, "top_titles": ["Boku no Hero Academia", "My Hero Academia", "僕のヒーローアカデミア", "Boku no Hero Academia 4", "My Hero Academia Season 4", "僕のヒーローアカデミア4", "Boku no Hero Academia 2", "My Hero Academia Season 2"], "top_ids": [21459, 104276, 21856]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Demon Slayer: Kimetsu no Yaiba", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3077.6, "error": null, "top_titles": ["Kimetsu no Yaiba", "Blade of Demon Destruction", "KnY", "Kimetsu no Yaiba: Mugen Ressha-hen", "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba: Infinity Train", "Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba 2"], "top_ids": ["41370", "42586", "44081"]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3808.8, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "一拳超人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3430.8, "error": null, "top_titles": ["Chouyaku Hyakuninisshu: Uta Koi.", "Chouyaku Hyakuninisshu: Uta Koi. - Sake to Kikoushi: Murasaki Shikibu to Kintou", "Kinnikuman: Seigi Choujin vs. Kodai Choujin"], "top_ids": [13349, 16119, 3275]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "鬼滅之刃", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 4904.4, "error": null, "top_titles": ["Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編", "Demon Slayer: Kimetsu no Yaiba - The Movie 3: Infinity Castle", "Kimetsu no Yaiba Movie 2: Mugenjou-hen", "Demon Slayer: Kimetsu no Yaiba - The Movie 2: Infinity Castle", "Kimetsu no Yaiba", "Blade of Demon Destruction", "鬼滅の刃"], "top_ids": [62547, 62546, 38000]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "원펀맨", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3131.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "鬼灭之刃", "hit": true, "position": 8, "kind": "id", "n_returned": 10, "duration_ms": 4175.4, "error": null, "top_titles": ["Oni", "The Demon", "鬼", "Kenki Virgo", "Sword Demon Virgo", "剣鬼バルゴ", "Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編"], "top_ids": [7171, 63026, 62547]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "One-Punch Man", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2527.8, "error": null, "top_titles": ["One Punch Man", "One Punch Man 2nd Season: Ichigeki de Wakaru! Maji Furikaeri!", "One Punch Man: Road to Hero"], "top_ids": [30276, 62653, 31704]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "鬼滅之刃", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 2495.0, "error": null, "top_titles": ["Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編", "Demon Slayer: Kimetsu no Yaiba - The Movie 3: Infinity Castle", "Kimetsu no Yaiba Movie 2: Mugenjou-hen", "Demon Slayer: Kimetsu no Yaiba - The Movie 2: Infinity Castle", "Kimetsu no Yaiba", "Blade of Demon Destruction", "鬼滅の刃"], "top_ids": [62547, 62546, 38000]} +{"sample_index": 4, "mal_id": 30276, "popularity": 4, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "one punch man", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4326.6, "error": null, "top_titles": ["One Punch Man", "One Punch Man 2nd Season: Ichigeki de Wakaru! Maji Furikaeri!", "One Punch Man: Road to Hero"], "top_ids": [30276, 62653, 31704]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "鬼灭之刃", "hit": true, "position": 8, "kind": "id", "n_returned": 10, "duration_ms": 3808.9, "error": null, "top_titles": ["Oni", "The Demon", "鬼", "Kenki Virgo", "Sword Demon Virgo", "剣鬼バルゴ", "Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編"], "top_ids": [7171, 63026, 62547]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "我的英雄学园", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 15206.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "我的英雄学园", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12848.4, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "demon slayer kimetsu no yaiba", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 11521.2, "error": null, "top_titles": ["Kimetsu no Yaiba", "Blade of Demon Destruction", "KnY", "Kimetsu no Yaiba: Mugen Ressha-hen", "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba: Infinity Train", "Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba 2"], "top_ids": ["41370", "42586", "44081"]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "鬼滅の刃", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3342.0, "error": null, "top_titles": ["Kimetsu no Yaiba", "Kimetsu no Yaiba: Katanakaji no Sato-hen", "Kimetsu no Yaiba: Yuukaku-hen"], "top_ids": [38000, 51019, 47778]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "귀멸의 칼날", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3061.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "我的英雄學園", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3523.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5480.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "鬼灭之刃", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 4558.2, "error": null, "top_titles": ["Zhan Shou Zhi Ren", "Kimetsu no Yaiba", "Kimetsu no Yaiba: Yuukaku-hen"], "top_ids": [38557, 38000, 47778]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6383.1, "error": null, "top_titles": ["Boku no Hero Academia", "Boku no Hero Academia the Movie: Futari no Hero", "Boku no Hero Academia: All Might - Rising The Animation"], "top_ids": ["11469", "14084", "42046"]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Demon Slayer: Kimetsu no Yaiba", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6157.3, "error": null, "top_titles": ["Kimetsu no Yaiba", "Blade of Demon Destruction", "鬼滅の刃", "Kimetsu no Yaiba Movie: Mugen Ressha-hen", "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba: Infinity Train", "Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba Movie: Mugen Ressha-hen (TV)"], "top_ids": [38000, 40456, 49926]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "我的英雄学园", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2105.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4114.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "鬼滅之刃", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3958.0, "error": null, "top_titles": ["Kimetsu no Yaiba", "Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba: Hashira Geiko-hen"], "top_ids": [38000, 47778, 55701]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "鬼滅之刃", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2328.3, "error": null, "top_titles": ["Kimetsu no Yaiba", "Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba: Hashira Geiko-hen"], "top_ids": [38000, 47778, 55701]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "我的英雄學園", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4995.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "鬼灭之刃", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3118.3, "error": null, "top_titles": ["Zhan Shou Zhi Ren", "Kimetsu no Yaiba", "Kimetsu no Yaiba: Yuukaku-hen"], "top_ids": [38557, 38000, 47778]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "demon slayer kimetsu no yaiba", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4957.7, "error": null, "top_titles": ["Kimetsu no Yaiba", "Blade of Demon Destruction", "鬼滅の刃", "Kimetsu no Yaiba Movie: Mugen Ressha-hen", "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba: Infinity Train", "Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba Movie: Mugen Ressha-hen (TV)"], "top_ids": [38000, 40456, 49926]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13226.9, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "鬼滅之刃", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2715.3, "error": null, "top_titles": ["Kimetsu no Yaiba", "Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba: Hashira Geiko-hen"], "top_ids": [38000, 47778, 55701]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1917.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3778.3, "error": null, "top_titles": ["Boku no Hero Academia", "僕のヒーローアカデミア", "My Hero Academia", "Boku no Hero Academia 2nd Season", "My Hero Academia Season 2", "Boku no Hero Academia 3rd Season", "My Hero Academia Season 3"], "top_ids": [31964, 33486, 36456]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "鬼灭之刃", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2170.6, "error": null, "top_titles": ["Zhan Shou Zhi Ren", "Kimetsu no Yaiba", "Kimetsu no Yaiba: Yuukaku-hen"], "top_ids": [38557, 38000, 47778]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "我的英雄学院", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 1617.9, "error": null, "top_titles": ["Boku no Hero Academia", "My Hero Academia", "僕のヒーローアカデミア", "Boku no Hero Academia 5", "My Hero Academia Season 5", "僕のヒーローアカデミア5", "Boku no Hero Academia 4", "My Hero Academia Season 4"], "top_ids": [21459, 117193, 104276]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "나히아 1기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12170.4, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8344.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2586.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "我的英雄学园", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2962.7, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "귀멸의 칼날", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3201.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "我的英雄學園", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2154.6, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2505.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "나히아 1기", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2458.9, "error": null, "top_titles": ["Boku no Hero Academia", "My Hero Academia", "僕のヒーローアカデミア"], "top_ids": [21459]} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Demon Slayer: Kimetsu no Yaiba", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3404.3, "error": null, "top_titles": ["Kimetsu no Yaiba", "Kimetsu no Yaiba x MLB", "Kimetsu no Yaiba: Yuukaku-hen"], "top_ids": [38000, 61179, 47778]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3450.5, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3908.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 5, "mal_id": 38000, "popularity": 5, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "demon slayer kimetsu no yaiba", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2407.8, "error": null, "top_titles": ["Kimetsu no Yaiba", "Kimetsu no Yaiba x MLB", "Kimetsu no Yaiba: Hashira Geiko-hen"], "top_ids": [38000, 61179, 55701]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2621.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3755.9, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 1772.6, "error": null, "top_titles": ["Boku no Hero Academia 5th Season", "Boku no Hero Academia 3rd Season", "Boku no Hero Academia 2nd Season"], "top_ids": [41587, 36456, 33486]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "My Hero Academia", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 8258.8, "error": null, "top_titles": ["Boku no Hero Academia", "My Hero Academia", "僕のヒーローアカデミア", "Boku no Hero Academia FINAL SEASON", "My Hero Academia FINAL SEASON", "僕のヒーローアカデミア FINAL SEASON", "Boku no Hero Academia No. 170+1: More", "My Hero Academia More"], "top_ids": [21459, 182896, 204356]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "My Hero Academia", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12186.0, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "我的英雄学园", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3295.1, "error": null, "top_titles": ["Jijia Yingxiong Movie: Wo Yu Wo Dengyu Wuxian Da", "Wo Men de Jia Yuan", "Wo Shi Xuexiao Weiyi de Renlei"], "top_ids": [56144, 45866, 54224]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5307.2, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3185.3, "error": null, "top_titles": ["Boku no Hero Academia", "My Hero Academia", "僕のヒーローアカデミア", "Boku no Hero Academia FINAL SEASON", "My Hero Academia FINAL SEASON", "僕のヒーローアカデミア FINAL SEASON", "Boku no Hero Academia No. 170+1: More", "My Hero Academia More"], "top_ids": [21459, 182896, 204356]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ソードアート・オンライン", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3772.6, "error": null, "top_titles": ["Sword Art Online", "ソードアート・オンライン", "Sword Art Online II", "ソードアート・オンライン II", "Sword Art Online: Alicization", "ソードアート・オンライン アリシゼーション"], "top_ids": [11757, 20594, 100182]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "나히아 1기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12349.5, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "そーどあーと・おんらいん", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 3567.1, "error": null, "top_titles": ["Sword Art Offline", "Sword Art OFFline", "そーどあーと・おふらいん", "Sword Art Offline II", "そーどあーと・おふらいん つー", "Sword Art Offline: Extra Edition", "そーどあーと・おふらいん Extra Edition"], "top_ids": [16099, 21155, 20895]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 9783.7, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "刀剑神域", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3446.1, "error": null, "top_titles": ["Sword Art Online", "ソードアート・オンライン"], "top_ids": [11757]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "我的英雄學園", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 13355.6, "error": null, "top_titles": ["Jijia Yingxiong Movie: Wo Yu Wo Dengyu Wuxian Da", "Kaixin Chaoren: Yingxiong de Xin", "Wo Shi Na Zha 2: Yingxiong Guilai"], "top_ids": [56144, 57384, 56795]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "My Hero Academia", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6540.2, "error": null, "top_titles": ["Boku no Hero Academia", "Boku no Hero Academia 2", "Boku no Hero Academia 3"], "top_ids": ["11469", "12268", "13881"]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "나히아 1기", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5503.5, "error": null, "top_titles": ["Pororo-wa Noraehaeyo 3rd Season", "뽀로로와 노래해요 3기", "Sing-A-Long with Pororo 3rd Season", "Athlon Tobot 2", "Athlon Tobot 2nd Season", "애슬론 또봇 2기", "Athlon Tobot 3", "Athlon Tobot 3rd Season"], "top_ids": [61916, 52737, 52738]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3633.5, "error": null, "top_titles": ["Kexue Guai Boshi: Shenqi de Taiyang Xueyuan", "Jijia Yingxiong Movie: Wo Yu Wo Dengyu Wuxian Da", "Xiong Bing Lian"], "top_ids": [46953, 56144, 37643]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "刀劍神域", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7819.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "My Hero Academia", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7030.4, "error": null, "top_titles": ["Boku no Hero Academia", "僕のヒーローアカデミア", "My Hero Academia", "Boku no Hero Academia: I Am a Hero Too", "僕のヒーローアカデミア I am a hero too", "My Hero Academia: I Am a Hero Too"], "top_ids": [31964, 64107, 64107]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 7069.8, "error": null, "top_titles": ["Jijia Yingxiong Movie: Wo Yu Wo Dengyu Wuxian Da", "Kaixin Chaoren: Yingxiong de Xin", "Wo Shi Na Zha 2: Yingxiong Guilai"], "top_ids": [56144, 57384, 56795]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "刀劍神域", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9323.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 7281.0, "error": null, "top_titles": ["Kexue Guai Boshi: Shenqi de Taiyang Xueyuan", "Jijia Yingxiong Movie: Wo Yu Wo Dengyu Wuxian Da", "Xiong Bing Lian"], "top_ids": [46953, 56144, 37643]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia", "hit": true, "position": 8, "kind": "title_exact", "n_returned": 22, "duration_ms": 12076.9, "error": null, "top_titles": ["My Hero Academia: I am a hero too", "Kōhei Horikoshi", "My Hero Academia: More", "Kenji Nagasaki", "Naomi Nakayama", "My Hero Academia: Vigilantes", "Kenichi Suzuki", "Yōsuke Kuroda"], "top_ids": ["39364", "38146", "36817"]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6202.4, "error": null, "top_titles": ["Boku no Hero Academia", "Boku no Hero Academia 2", "Boku no Hero Academia 3"], "top_ids": ["11469", "12268", "13881"]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4230.8, "error": null, "top_titles": ["Boku no Hero Academia", "僕のヒーローアカデミア", "My Hero Academia", "Boku no Hero Academia: I Am a Hero Too", "僕のヒーローアカデミア I am a hero too", "My Hero Academia: I Am a Hero Too"], "top_ids": [31964, 64107, 64107]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "刀剑神域", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2572.2, "error": null, "top_titles": ["Sword Art Online", "ソードアート・オンライン"], "top_ids": [11757]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2234.9, "error": null, "top_titles": ["Jijia Yingxiong Movie: Wo Yu Wo Dengyu Wuxian Da", "Kaixin Chaoren: Yingxiong de Xin", "Wo Shi Na Zha 2: Yingxiong Guilai"], "top_ids": [56144, 57384, 56795]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ソードアート・オンライン", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2439.0, "error": null, "top_titles": ["Sword Art Online", "S.A.O", "SAO", "Sword Art Online II", "Phantom Bullet", "SAO II", "Sword Art Online: Alicization", "Sword Art Online III"], "top_ids": [11757, 21881, 36474]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ソードアート・オンライン", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4049.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "나히아 1기", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 3419.8, "error": null, "top_titles": ["Byeonsinjadongcha Tobot 11th Season"], "top_ids": [62766]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "刀劍神域", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5324.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ソードアート・オンライン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7549.3, "error": null, "top_titles": ["Sword Art Online", "S.A.O", "SAO", "Sword Art Online II", "Phantom Bullet", "SAO II", "Sword Art Online Movie"], "top_ids": ["6589", "8174", "46730"]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "そーどあーと・おんらいん", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 5150.6, "error": null, "top_titles": ["Sword Art Online: Sword Art Offline", "Sword Art Online Specials", "S.A.O Specials", "Sword Art Online: Sword Art Offline - Extra Edition", "SAO Special", "S.A.O Special", "Sword Art Online II: Sword Art Offline II", "SAO 2 Specials"], "top_ids": [16099, 21879, 28063]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "そーどあーと・おんらいん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5595.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "My Hero Academia", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4943.2, "error": null, "top_titles": ["Boku no Hero Academia", "Boku no Hero Academia the Movie 1: Futari no Hero", "Boku no Hero Academia: Hero Note"], "top_ids": [31964, 36896, 35262]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "そーどあーと・おんらいん", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 3, "duration_ms": 3057.1, "error": null, "top_titles": ["Sword Art Online: Sword Art Offline", "Sword Art Online Specials", "S.A.O Specials", "Sword Art Online: Sword Art Offline - Extra Edition", "SAO Special", "S.A.O Special", "Sword Art Online II: Sword Art Offline II", "SAO 2 Specials"], "top_ids": ["7372", "8196", "9963"]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "刀剑神域", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 7153.2, "error": null, "top_titles": ["Sword Art Online", "ソードアート・オンライン"], "top_ids": [11757]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "刀剑神域", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5231.4, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "소드 아트 온라인", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4459.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "刀剑神域", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 10382.5, "error": null, "top_titles": ["He Wei Dao x Daojian Shenyu Alicization", "Sword Art Online: Alicization x Nissin", "Sword Art Online Alicization: x Cup Noodles", "Xue Zhong Han Dao Xing", "雪中悍刀行", "Fierce Sabre in the Snow", "Zhen Dao Ge 3rd Season", "枕刀歌3:孤城闭雪"], "top_ids": [42128, 62740, 62444]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "刀劍神域", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4673.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Sword Art Online", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2563.6, "error": null, "top_titles": ["Sword Art Online", "ソードアート・オンライン", "Sword Art Online II", "ソードアート・オンライン II", "Sword Art Online: Alicization", "ソードアート・オンライン アリシゼーション"], "top_ids": [11757, 20594, 100182]} +{"sample_index": 6, "mal_id": 31964, "popularity": 6, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2014.0, "error": null, "top_titles": ["Boku no Hero Academia", "Boku no Hero Academia the Movie 2: Heroes:Rising", "Boku no Hero Academia the Movie 1: Futari no Hero"], "top_ids": [31964, 39565, 36896]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "刀剑神域", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13401.7, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "刀劍神域", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 4, "duration_ms": 7589.7, "error": null, "top_titles": ["Zhan Shen: Fanchen Shenyu II", "Zhan Shen: Fanchen Shenyu 2nd Season", "Slay The Gods 2nd Season", "He Wei Dao x Daojian Shenyu Alicization", "Sword Art Online: Alicization x Nissin", "Sword Art Online Alicization: x Cup Noodles", "Zhan Shen: Fanchen Shenyu", "I Learn To Kill Gods in an Asylum"], "top_ids": [62234, 42128, 59306]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ソードアート・オンライン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2390.0, "error": null, "top_titles": ["Sword Art Online", "Sword Art Online: Extra Edition", "Sword Art Online II"], "top_ids": [11757, 20021, 21881]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "刀劍神域", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 4, "duration_ms": 2665.3, "error": null, "top_titles": ["Zhan Shen: Fanchen Shenyu II", "Zhan Shen: Fanchen Shenyu 2nd Season", "Slay The Gods 2nd Season", "He Wei Dao x Daojian Shenyu Alicization", "Sword Art Online: Alicization x Nissin", "Sword Art Online Alicization: x Cup Noodles", "Zhan Shen: Fanchen Shenyu", "I Learn To Kill Gods in an Asylum"], "top_ids": [62234, 42128, 59306]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "sword art online", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5126.1, "error": null, "top_titles": ["Sword Art Online", "ソードアート・オンライン", "Sword Art Online II", "ソードアート・オンライン II", "Sword Art Online: Alicization", "ソードアート・オンライン アリシゼーション"], "top_ids": [11757, 20594, 100182]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "刀劍神域", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 6703.0, "error": null, "top_titles": ["He Wei Dao x Daojian Shenyu Alicization", "Sword Art Online Alicization: x Cup Noodles", "He Wei Dao x Sword Art Online: Alicization"], "top_ids": ["46282"]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "刀劍神域", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13300.2, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "刀剑神域", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 4085.0, "error": null, "top_titles": ["He Wei Dao x Daojian Shenyu Alicization", "Sword Art Online: Alicization x Nissin", "Sword Art Online Alicization: x Cup Noodles", "Xue Zhong Han Dao Xing", "雪中悍刀行", "Fierce Sabre in the Snow", "Zhen Dao Ge 3rd Season", "枕刀歌3:孤城闭雪"], "top_ids": [42128, 62740, 62444]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "そーどあーと・おんらいん", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 6617.9, "error": null, "top_titles": ["Sword Art Online II: Sword Art Offline II", "Sword Art Online: Sword Art Offline", "Sword Art Online: Sword Art Offline - Extra Edition"], "top_ids": [28063, 16099, 21879]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "刀劍神域", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 2460.3, "error": null, "top_titles": ["He Wei Dao x Daojian Shenyu Alicization", "Sword Art Online Alicization: x Cup Noodles", "He Wei Dao x Sword Art Online: Alicization"], "top_ids": ["46282"]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "HUNTER×HUNTER(ハンター×ハンター)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3734.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "소드 아트 온라인", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3543.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "刀剑神域", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 3156.0, "error": null, "top_titles": ["He Wei Dao x Daojian Shenyu Alicization", "Sword Art Online Alicization: x Cup Noodles", "He Wei Dao x Sword Art Online: Alicization"], "top_ids": ["46282"]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "刀劍神域", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 4, "duration_ms": 7017.8, "error": null, "top_titles": ["Zhan Shen: Fanchen Shenyu II", "Zhan Shen: Fanchen Shenyu 2nd Season", "Slay The Gods 2nd Season", "He Wei Dao x Daojian Shenyu Alicization", "Sword Art Online: Alicization x Nissin", "Sword Art Online Alicization: x Cup Noodles", "Zhan Shen: Fanchen Shenyu", "I Learn To Kill Gods in an Asylum"], "top_ids": [62234, 42128, 59306]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "刀劍神域", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 3441.3, "error": null, "top_titles": ["He Wei Dao x Daojian Shenyu Alicization", "Sword Art Online Alicization: x Cup Noodles", "He Wei Dao x Sword Art Online: Alicization"], "top_ids": ["46282"]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Sword Art Online", "hit": true, "position": 13, "kind": "title_exact", "n_returned": 14, "duration_ms": 7516.7, "error": null, "top_titles": ["Sword Art Online Alternative: Gun Gale Online II", "Masayuki Sakoi", "Yōsuke Kuroda", "Sword Art Online The Movie - Progressive: Scherzo of Deep Night", "Ayako Kōno", "Yukito Kizawa", "Sword Art Online the Movie -Progressive- Aria of a Starless Night"], "top_ids": ["29052", "24922", "23784"]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "刀剑神域", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 4223.1, "error": null, "top_titles": ["He Wei Dao x Daojian Shenyu Alicization", "Sword Art Online Alicization: x Cup Noodles", "He Wei Dao x Sword Art Online: Alicization"], "top_ids": ["46282"]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "刀剑神域", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12281.8, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "HUNTER×HUNTER(はんたー×はんたー)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 11849.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "刀剑神域", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 7449.0, "error": null, "top_titles": ["He Wei Dao x Daojian Shenyu Alicization", "Sword Art Online: Alicization x Nissin", "Sword Art Online Alicization: x Cup Noodles", "Xue Zhong Han Dao Xing", "雪中悍刀行", "Fierce Sabre in the Snow", "Zhen Dao Ge 3rd Season", "枕刀歌3:孤城闭雪"], "top_ids": [42128, 62740, 62444]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "소드 아트 온라인", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3060.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "全职猎人", "hit": true, "position": 1, "kind": "id", "n_returned": 2, "duration_ms": 2277.5, "error": null, "top_titles": ["HUNTER×HUNTER", "Hunter x Hunter", "HUNTER×HUNTER (2011)", "Hunter x Hunter (2011)"], "top_ids": [136, 11061]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "刀劍神域", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4729.3, "error": null, "top_titles": ["He Wei Dao x Daojian Shenyu Alicization", "Zhan Shen: Fanchen Shenyu", "Zhan Shen: Fanchen Shenyu II"], "top_ids": [42128, 59306, 62234]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "全職獵人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2698.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "刀劍神域", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2246.6, "error": null, "top_titles": ["He Wei Dao x Daojian Shenyu Alicization", "Zhan Shen: Fanchen Shenyu", "Zhan Shen: Fanchen Shenyu II"], "top_ids": [42128, 59306, 62234]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "소드 아트 온라인", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 5147.0, "error": null, "top_titles": ["Elsword: El-ui Yeoin", "Elsword: El Lady", "엘소드 엘의 여인", "Elsword: Ain-ui Gieog Animation", "[엘소드] 아인의 기억 애니메이션", "DR Movie", "Shasha and Milo Part 2", "샤샤&마일로 NEW에피소드"], "top_ids": [32613, 34766, 59583]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "全職獵人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2933.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Sword Art Online", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7121.9, "error": null, "top_titles": ["Sword Art Online", "S.A.O", "SAO", "Sword Art Online II", "Phantom Bullet", "SAO II", "Sword Art Online: Alicization", "Sword Art Online III"], "top_ids": ["6589", "8174", "13893"]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "刀剑神域", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2422.5, "error": null, "top_titles": ["He Wei Dao x Daojian Shenyu Alicization", "Zhan Shen: Fanchen Shenyu", "Zhan Shen: Fanchen Shenyu II"], "top_ids": [42128, 59306, 62234]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Sword Art Online", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4175.7, "error": null, "top_titles": ["Sword Art Online", "S.A.O", "SAO", "Sword Art Online Fatal Bullet: The Third Episode - Pilot-ban", "Sword Art Online Fatal Bullet -The Third Episode- <パイロット版>", "Sword Art Online Fatal Bullet: The Third Episode - Pilot", "Sword Art Online: Unanswered//butterfly", "Unanswered//butterfly: Sword Art Online"], "top_ids": [11757, 37278, 63736]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "刀劍神域", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3277.3, "error": null, "top_titles": ["He Wei Dao x Daojian Shenyu Alicization", "Zhan Shen: Fanchen Shenyu", "Zhan Shen: Fanchen Shenyu II"], "top_ids": [42128, 59306, 62234]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "全职猎人", "hit": true, "position": 1, "kind": "id", "n_returned": 2, "duration_ms": 6843.7, "error": null, "top_titles": ["HUNTER×HUNTER", "Hunter x Hunter", "HUNTER×HUNTER (2011)", "Hunter x Hunter (2011)"], "top_ids": [136, 11061]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "刀剑神域", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3468.5, "error": null, "top_titles": ["He Wei Dao x Daojian Shenyu Alicization", "Zhan Shen: Fanchen Shenyu", "Zhan Shen: Fanchen Shenyu II"], "top_ids": [42128, 59306, 62234]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "sword art online", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2937.5, "error": null, "top_titles": ["Sword Art Online", "S.A.O", "SAO", "Sword Art Online Fatal Bullet: The Third Episode - Pilot-ban", "Sword Art Online Fatal Bullet -The Third Episode- <パイロット版>", "Sword Art Online Fatal Bullet: The Third Episode - Pilot", "Sword Art Online: Unanswered//butterfly", "Unanswered//butterfly: Sword Art Online"], "top_ids": [11757, 37278, 63736]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "HUNTER×HUNTER 獵人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4082.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "HUNTER×HUNTER(ハンター×ハンター)", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3607.9, "error": null, "top_titles": ["Hunter x Hunter (2011)", "HxH (2011)", "HUNTER×HUNTER(ハンター×ハンター)", "Hunter x Hunter", "HxH", "Hunter x Hunter Movie 1: Phantom Rouge", "Gekijouban Hunter x Hunter: Hiiro no Genei", "HxH Movie"], "top_ids": [11061, 136, 13271]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "sword art online", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4355.1, "error": null, "top_titles": ["Sword Art Online", "S.A.O", "SAO", "Sword Art Online II", "Phantom Bullet", "SAO II", "Sword Art Online: Alicization", "Sword Art Online III"], "top_ids": ["6589", "8174", "13893"]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "HUNTER×HUNTER 猎人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3238.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "HUNTER×HUNTER(はんたー×はんたー)", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3050.8, "error": null, "top_titles": ["Hunter x Hunter (2011)", "HxH (2011)", "HUNTER×HUNTER(ハンター×ハンター)", "Hunter x Hunter", "HxH", "Hunter x Hunter Movie 1: Phantom Rouge", "Gekijouban Hunter x Hunter: Hiiro no Genei", "HxH Movie"], "top_ids": [11061, 136, 13271]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "HUNTER×HUNTER(ハンター×ハンター)", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 5299.8, "error": null, "top_titles": ["Hunter x Hunter", "HxH", "HUNTER×HUNTER(ハンター×ハンター)"], "top_ids": ["115"]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "全职猎人", "hit": true, "position": 6, "kind": "title_substring", "n_returned": 10, "duration_ms": 3953.1, "error": null, "top_titles": ["Quanzhi Fashi Tebie Pian: Beiyuan Weiji", "全职法师特别篇之北原危机", "The Almighty Mage SP: Beiyuan Crisis", "Quanzhi Fashi VII", "Quanzhi Fashi 7th Season", "全职法师 第7季", "Quanzhi Gaoshou 4", "全职高手4"], "top_ids": [62720, 62719, 62244]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "소드 아트 온라인", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12193.9, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "헌터 × 헌터", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6512.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "HUNTER×HUNTER(はんたー×はんたー)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3858.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Sword Art Online", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2857.1, "error": null, "top_titles": ["Sword Art Online", "Sword Art Online: Sword Art Offline", "Sword Art Online: Sword Art Offline - Extra Edition"], "top_ids": [11757, 16099, 21879]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Hunter x Hunter", "hit": true, "position": 1, "kind": "id", "n_returned": 9, "duration_ms": 2491.3, "error": null, "top_titles": ["HUNTER×HUNTER", "Hunter x Hunter", "HUNTER×HUNTER (2011)", "Hunter x Hunter (2011)", "HUNTER×HUNTER: Greed Island Final", "HUNTER×HUNTER G・I Final"], "top_ids": [136, 11061, 139]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "sword art online", "hit": true, "position": 13, "kind": "title_exact", "n_returned": 14, "duration_ms": 23885.1, "error": null, "top_titles": ["Sword Art Online Alternative: Gun Gale Online II", "Masayuki Sakoi", "Yōsuke Kuroda", "Sword Art Online The Movie - Progressive: Scherzo of Deep Night", "Ayako Kōno", "Yukito Kizawa", "Sword Art Online the Movie -Progressive- Aria of a Starless Night"], "top_ids": ["29052", "24922", "23784"]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "全職獵人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5870.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "全职猎人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2617.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "全職獵人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1673.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "全職獵人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3415.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "HUNTER×HUNTER(ハンター×ハンター)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4972.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "全職獵人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3051.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "hunter x hunter", "hit": true, "position": 1, "kind": "id", "n_returned": 9, "duration_ms": 4057.0, "error": null, "top_titles": ["HUNTER×HUNTER", "Hunter x Hunter", "HUNTER×HUNTER (2011)", "Hunter x Hunter (2011)", "HUNTER×HUNTER: Greed Island Final", "HUNTER×HUNTER G・I Final"], "top_ids": [136, 11061, 139]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "全职猎人", "hit": true, "position": 6, "kind": "title_substring", "n_returned": 10, "duration_ms": 2415.9, "error": null, "top_titles": ["Quanzhi Fashi Tebie Pian: Beiyuan Weiji", "全职法师特别篇之北原危机", "The Almighty Mage SP: Beiyuan Crisis", "Quanzhi Fashi VII", "Quanzhi Fashi 7th Season", "全职法师 第7季", "Quanzhi Gaoshou 4", "全职高手4"], "top_ids": [62720, 62719, 62244]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "全职猎人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2064.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ナルト", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2270.6, "error": null, "top_titles": ["NARUTO", "Naruto", "NARUTO -ナルト-", "NARUTO: THE CROSS ROADS", "NARUTO -ナルト- THE CROSS ROADS", "NARUTO: Shippuuden", "Naruto: Shippuden", "NARUTO -ナルト- 疾風伝"], "top_ids": [20, 7367, 1735]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "HUNTER×HUNTER(はんたー×はんたー)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4809.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "HUNTER×HUNTER 獵人", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3120.4, "error": null, "top_titles": ["Hunter x Hunter (2011)", "HUNTER×HUNTER ハンターハンター", "HxH (2011)", "Hunter x Hunter Movie 1: Phantom Rouge", "Gekijouban Hunter x Hunter: Hiiro no Genei", "HxH Movie", "Hunter x Hunter Movie 2: The Last Mission", "Gekijouban Hunter x Hunter"], "top_ids": ["6448", "6930", "7908"]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "なると", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 7, "duration_ms": 3391.9, "error": null, "top_titles": ["Choconaruto", "ちょこなると", "Shikoyaka naru Toki mo Hameru Toki mo", "シコやかなるときもハメるときも", "Furusato no Nai Aki", "ふるさとのない秋"], "top_ids": [204479, 123845, 140357]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "全职猎人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2931.4, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "火影忍者", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2967.4, "error": null, "top_titles": ["NARUTO", "Naruto", "NARUTO -ナルト-", "NARUTO: Shippuuden", "Naruto: Shippuden", "NARUTO -ナルト- 疾風伝", "BORUTO: NARUTO NEXT GENERATIONS", "Boruto: Naruto Next Generations"], "top_ids": [20, 1735, 97938]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "狐忍", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3848.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "全職獵人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6177.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "HUNTER×HUNTER 獵人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13311.8, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "HUNTER×HUNTER 猎人", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 10310.6, "error": null, "top_titles": ["Hunter x Hunter (2011)", "HUNTER×HUNTER ハンターハンター", "HxH (2011)", "Hunter x Hunter Movie 1: Phantom Rouge", "Gekijouban Hunter x Hunter: Hiiro no Genei", "HxH Movie", "Hunter x Hunter Movie 2: The Last Mission", "Gekijouban Hunter x Hunter"], "top_ids": ["6448", "6930", "7908"]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "火影忍者", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2813.9, "error": null, "top_titles": ["NARUTO", "Naruto", "NARUTO -ナルト-", "NARUTO: Shippuuden", "Naruto: Shippuden", "NARUTO -ナルト- 疾風伝", "BORUTO: NARUTO NEXT GENERATIONS", "Boruto: Naruto Next Generations"], "top_ids": [20, 1735, 97938]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "HUNTER×HUNTER 猎人", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3247.5, "error": null, "top_titles": ["Hunter x Hunter (2011)", "HxH (2011)", "HUNTER×HUNTER(ハンター×ハンター)", "Hunter x Hunter", "HxH", "Hunter x Hunter Movie 1: Phantom Rouge", "Gekijouban Hunter x Hunter: Hiiro no Genei", "HxH Movie"], "top_ids": [11061, 136, 13271]} +{"sample_index": 7, "mal_id": 11757, "popularity": 7, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "sword art online", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3839.8, "error": null, "top_titles": ["Sword Art Online", "Sword Art Online: Sword Art Offline", "Sword Art Online: Sword Art Offline - Extra Edition"], "top_ids": [11757, 16099, 21879]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "HUNTER×HUNTER 獵人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5857.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "나루토", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3870.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "헌터 × 헌터", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 2769.0, "error": null, "top_titles": ["Creature Hunters", "크리처헌터스", "Adventure"], "top_ids": [57150]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "HUNTER×HUNTER(ハンター×ハンター)", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3574.9, "error": null, "top_titles": ["Hunter x Hunter (2011)", "Hunter x Hunter", "Hunter x Hunter Pilot"], "top_ids": [11061, 136, 10189]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "헌터 × 헌터", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3052.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Hunter x Hunter", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 2865.6, "error": null, "top_titles": ["Hunter x Hunter", "HxH", "HUNTER×HUNTER(ハンター×ハンター)", "Hunter x Hunter (2011)", "HxH (2011)", "Irregular Hunter X: The Day of Sigma", "Irregular Hunter X", "MegaMan Maverick Hunter X: The Day of Sigma"], "top_ids": [136, 11061, 2808]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Naruto", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3716.2, "error": null, "top_titles": ["NARUTO", "Naruto", "NARUTO -ナルト-", "NARUTO×UT", "ROAD OF NARUTO"], "top_ids": [20, 10075, 155348]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "HUNTER×HUNTER(はんたー×はんたー)", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2127.9, "error": null, "top_titles": ["Dondonshi Television Vol. 0: Saito-san wo Shinryaku shita yo.", "Genki Genki Non-tan: Spoon Tan Tan Tan", "Minna no Douyou: Warera wa Umi no Ko - Minna de Utau Uta"], "top_ids": [63068, 25619, 51160]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "헌터 × 헌터", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 9156.7, "error": null, "top_titles": ["K-POP DEMON HUNTERS"], "top_ids": ["49935"]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "全职猎人", "hit": true, "position": 7, "kind": "title_substring", "n_returned": 10, "duration_ms": 2567.4, "error": null, "top_titles": ["Mo Jing Lieren", "Quanzhi Gaoshou", "Quanzhi Fashi"], "top_ids": [33602, 33926, 34300]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "en", "backend": "anilist", "variant": "enhance_romaji_to_katakana", "query": "ナルト", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2730.0, "error": null, "top_titles": ["NARUTO", "Naruto", "NARUTO -ナルト-", "NARUTO: THE CROSS ROADS", "NARUTO -ナルト- THE CROSS ROADS", "NARUTO: Shippuuden", "Naruto: Shippuden", "NARUTO -ナルト- 疾風伝"], "top_ids": [20, 7367, 1735]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Hunter x Hunter", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4901.4, "error": null, "top_titles": ["Hunter x Hunter (2011)", "HUNTER×HUNTER ハンターハンター", "HxH (2011)", "Hunter x Hunter", "HxH", "HUNTER×HUNTER(ハンター×ハンター)", "Irregular Hunter X: The Day of Sigma", "Irregular Hunter X"], "top_ids": ["6448", "115", "2563"]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "naruto", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7495.6, "error": null, "top_titles": ["NARUTO", "Naruto", "NARUTO -ナルト-", "NARUTO×UT", "ROAD OF NARUTO"], "top_ids": [20, 10075, 155348]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "hunter x hunter", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 4863.6, "error": null, "top_titles": ["Hunter x Hunter", "HxH", "HUNTER×HUNTER(ハンター×ハンター)", "Hunter x Hunter (2011)", "HxH (2011)", "Irregular Hunter X: The Day of Sigma", "Irregular Hunter X", "MegaMan Maverick Hunter X: The Day of Sigma"], "top_ids": [136, 11061, 2808]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Hunter x Hunter", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12843.3, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "hunter x hunter", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2123.1, "error": null, "top_titles": ["Hunter x Hunter (2011)", "HUNTER×HUNTER ハンターハンター", "HxH (2011)", "Hunter x Hunter", "HxH", "HUNTER×HUNTER(ハンター×ハンター)", "Irregular Hunter X: The Day of Sigma", "Irregular Hunter X"], "top_ids": ["6448", "115", "2563"]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "東京喰種-トーキョーグール-", "hit": true, "position": 2, "kind": "id", "n_returned": 6, "duration_ms": 4151.2, "error": null, "top_titles": ["Tokyo Ghoul:re", "東京喰種-トーキョーグール-:re", "Tokyo Ghoul:re 2", "東京喰種-トーキョーグール-:re 2", "Tokyo Ghoul", "東京喰種 トーキョーグール"], "top_ids": [100240, 102351, 20605]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ナルト", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2215.1, "error": null, "top_titles": ["Naruto: Shippuuden", "Naruto Hurricane Chronicles", "Naruto", "NARUTO", "Naruto: Shippuuden Movie 3 - Hi no Ishi wo Tsugu Mono", "Naruto Shippuuden: Gekijouban Naruto Shippuuden: Hi no Ishi o Tsugu Mono", "Naruto Shippuuden Movie 3"], "top_ids": ["1555", "11", "4520"]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "东京食种", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2678.4, "error": null, "top_titles": ["Tokyo Ghoul", "東京喰種 トーキョーグール"], "top_ids": [20605]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "なると", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 3122.7, "error": null, "top_titles": ["Narutaru: Mukuro Naru Hoshi Tama Taru Ko", "Sarutobi Ecchan", "Hela superdziewczyna", "Nantokashite Alguard"], "top_ids": ["743", "4516", "6990"]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "火影忍者", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2789.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "狐忍", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2112.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "東京食種", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6256.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ナルト", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12334.6, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "hunter x hunter", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 4, "duration_ms": 6291.1, "error": null, "top_titles": ["Hunter X Hunter: G I Final", "Takeshi Hirota", "Masato Satō", "Hunter X Hunter: Greed Island", "Yukihiro Matsushita", "Nobuaki Kishima", "Hunter X Hunter", "Satoshi Saga"], "top_ids": ["3177", "2282", "1135"]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "全職獵人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 23747.4, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "東京喰種", "hit": true, "position": 1, "kind": "id", "n_returned": 7, "duration_ms": 3249.2, "error": null, "top_titles": ["Tokyo Ghoul √A", "東京喰種[トーキョーグール]√A", "Tokyo Ghoul", "東京喰種 トーキョーグール", "Tokyo Ghoul:re", "東京喰種-トーキョーグール-:re"], "top_ids": [20850, 20605, 100240]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ナルト", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3121.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "なると", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4712.9, "error": null, "top_titles": ["Higeki no Genkyou to Naru Saikyou Gedou Last Boss Joou wa Tami no Tame ni Tsukushimasu. Season 2", "The Most Heretical Last Boss Queen Who Will Become the Source of Tragedy Will Devote Herself for the Sake of the People", "Lastame", "Higeki no Genkyou to Naru Saikyou Gedou Last Boss Joou wa Tami no Tame ni Tsukushimasu.", "Higeki no Genkyou to Naru Saikyou Gedou Last Boss Joou wa Tami no Tame ni Tsukushimasu. Mini", "悲劇の元凶となる最強外道ラスボス女王は民の為に尽くします。ミニ", "The Most Heretical Last Boss Queen: From Villainess to Savior Mini Anime"], "top_ids": [61931, 53438, 55957]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "全職獵人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2886.9, "error": null, "top_titles": ["Shiodome Cable TV: Koyaku Shokunin", "Future Card Buddyfight Recap", "Mister Ajikko Special"], "top_ids": [62467, 24675, 25053]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "なると", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2080.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "全职猎人", "hit": true, "position": 7, "kind": "title_substring", "n_returned": 10, "duration_ms": 3534.9, "error": null, "top_titles": ["Mo Jing Lieren", "Quanzhi Gaoshou", "Quanzhi Fashi"], "top_ids": [33602, 33926, 34300]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "东京喰种", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7357.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "火影忍者", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 5953.4, "error": null, "top_titles": ["Boruto: Naruto the Movie - Naruto ga Hokage ni Natta Hi", "The Day Naruto Became Hokage", "BORUTO -NARUTO THE MOVIE- ナルトが火影になった日", "Ninja Collection", "忍者コレクション", "TV Tokyo", "Ninja Hattori-kun", "Hattori the Ninja"], "top_ids": [32365, 42260, 4936]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "火影忍者", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4671.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "火影忍者", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13702.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "HUNTER×HUNTER 獵人", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5375.1, "error": null, "top_titles": ["Hunter x Hunter (2011)", "Hunter x Hunter", "Hunter x Hunter Pilot"], "top_ids": [11061, 136, 10189]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "狐忍", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4171.6, "error": null, "top_titles": ["Kitsune to Kotori", "トロットのバードデー", "Trot and Bird Day", "Inu x Boku SS", "Youko x Boku SS", "妖狐×僕SS", "Sewayaki Kitsune no Senko-san", "Meddlesome Kitsune Senko-san"], "top_ids": [64173, 11013, 38759]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "나루토", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3754.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "東京喰種", "hit": true, "position": 1, "kind": "id", "n_returned": 7, "duration_ms": 6762.4, "error": null, "top_titles": ["Tokyo Ghoul √A", "東京喰種[トーキョーグール]√A", "Tokyo Ghoul", "東京喰種 トーキョーグール", "Tokyo Ghoul:re", "東京喰種-トーキョーグール-:re"], "top_ids": [20850, 20605, 100240]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "狐忍", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5704.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "HUNTER×HUNTER 猎人", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2670.7, "error": null, "top_titles": ["Hunter x Hunter (2011)", "Hunter x Hunter", "Hunter x Hunter Pilot"], "top_ids": [11061, 136, 10189]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "헌터 × 헌터", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 3388.2, "error": null, "top_titles": ["Creature Hunters"], "top_ids": [57150]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "东京喰种", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3641.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "火影忍者", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3930.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "도쿄 구울", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2370.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Naruto", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 7280.6, "error": null, "top_titles": ["Naruto: Shippuuden", "Naruto Hurricane Chronicles", "Naruto", "NARUTO", "Naruto: Shippuuden Movie 6 - Road to Ninja", "Naruto Movie 9"], "top_ids": ["1555", "11", "7008"]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "나루토", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2877.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Tokyo Ghoul", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 2475.6, "error": null, "top_titles": ["Tokyo Ghoul", "東京喰種 トーキョーグール", "Tokyo Ghoul √A", "東京喰種[トーキョーグール]√A", "Tokyo Ghoul: [PINTO]", "東京喰種トーキョーグール【PINTO】"], "top_ids": [20605, 20850, 21326]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "火影忍者", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12194.5, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Hunter x Hunter", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7500.3, "error": null, "top_titles": ["Hunter x Hunter (2011)", "Hunter x Hunter", "Hunter x Hunter Pilot"], "top_ids": [11061, 136, 10189]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Naruto", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 22, "duration_ms": 6432.1, "error": null, "top_titles": ["Naruto", "Masashi Kishimoto", "NARUTO×UT", "UNIQLO", "Naruto, the Genie, and the Three Wishes, Believe It!", "Yasuharu Takanashi"], "top_ids": ["28889", "24788", "23662"]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "나루토", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4266.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "tokyo ghoul", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 2124.5, "error": null, "top_titles": ["Tokyo Ghoul", "東京喰種 トーキョーグール", "Tokyo Ghoul √A", "東京喰種[トーキョーグール]√A", "Tokyo Ghoul: [PINTO]", "東京喰種トーキョーグール【PINTO】"], "top_ids": [20605, 20850, 21326]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Naruto", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4167.6, "error": null, "top_titles": ["Naruto", "NARUTO", "ナルト", "The Last: Naruto the Movie", "Naruto Movie 10: Naruto the Movie: The Last,Naruto: Shippuuden Movie 7 - The Last", "THE LAST NARUTO THE MOVIE", "Boruto: Naruto the Movie", "Gekijouban Naruto (2015)"], "top_ids": [20, 16870, 28755]} +{"sample_index": 8, "mal_id": 11061, "popularity": 8, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "hunter x hunter", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2956.7, "error": null, "top_titles": ["Hunter x Hunter (2011)", "Hunter x Hunter", "Hunter x Hunter Pilot"], "top_ids": [11061, 136, 10189]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "en", "backend": "kitsu", "variant": "enhance_romaji_to_katakana", "query": "ナルト", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12340.1, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "naruto", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 22, "duration_ms": 6521.7, "error": null, "top_titles": ["Naruto", "Masashi Kishimoto", "NARUTO×UT", "UNIQLO", "Naruto, the Genie, and the Three Wishes, Believe It!", "Yasuharu Takanashi"], "top_ids": ["28889", "24788", "23662"]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "呪術廻戦", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4285.2, "error": null, "top_titles": ["Jujutsu Kaisen", "JUJUTSU KAISEN", "呪術廻戦", "Jujutsu Kaisen 0", "JUJUTSU KAISEN 0", "呪術廻戦 0", "Jujutsu Kaisen Modulo PV", "呪術廻戦≡ PV"], "top_ids": [113415, 131573, 211607]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ナルト", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2423.7, "error": null, "top_titles": ["Naruto", "Naruto: The Cross Roads", "Naruto: Shippuuden Movie 3 - Hi no Ishi wo Tsugu Mono"], "top_ids": [20, 7367, 6325]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "en", "backend": "jikan", "variant": "enhance_romaji_to_katakana", "query": "ナルト", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3039.9, "error": null, "top_titles": ["Naruto", "NARUTO", "ナルト", "Naruto: Shippuuden", "Naruto Hurricane Chronicles", "-ナルト- 疾風伝", "Naruto: Shippuuden Movie 1", "Naruto Shippuden Movie"], "top_ids": [20, 1735, 2472]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "naruto", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2701.3, "error": null, "top_titles": ["Naruto: Shippuuden", "Naruto Hurricane Chronicles", "Naruto", "NARUTO", "Naruto: Shippuuden Movie 6 - Road to Ninja", "Naruto Movie 9"], "top_ids": ["1555", "11", "7008"]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "東京喰種-トーキョーグール-", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3635.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "東京喰種-トーキョーグール-", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 2670.8, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Kushu", "Toukyou Kushu", "Tokyo Ghoul: \"Jack\"", "Tokyo Ghoul: \"Pinto\""], "top_ids": ["8271", "10789", "11294"]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "なると", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3091.9, "error": null, "top_titles": ["Shikoyaka Naru Toki mo Hameru Toki mo", "Class no Daikirai na Joshi to Kekkon suru Koto ni Natta.", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku OVA"], "top_ids": [42848, 59135, 33161]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "ja", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "呪术廻戦", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4054.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "naruto", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4452.0, "error": null, "top_titles": ["Naruto", "NARUTO", "ナルト", "The Last: Naruto the Movie", "Naruto Movie 10: Naruto the Movie: The Last,Naruto: Shippuuden Movie 7 - The Last", "THE LAST NARUTO THE MOVIE", "Boruto: Naruto the Movie", "Gekijouban Naruto (2015)"], "top_ids": [20, 16870, 28755]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "东京食种", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2626.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "东京食种", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2799.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "咒术回战", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 3240.6, "error": null, "top_titles": ["Jujutsu Kaisen", "JUJUTSU KAISEN", "呪術廻戦", "Jujutsu Kaisen 2nd Season", "JUJUTSU KAISEN Season 2", "呪術廻戦 第2期", "Jujutsu Kaisen 0", "JUJUTSU KAISEN 0"], "top_ids": [113415, 145064, 131573]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "火影忍者", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4950.0, "error": null, "top_titles": ["Ninja Senshi Tobikage", "Kamen no Ninja Akakage", "Ninja Tamamaru no Hi no Youjin"], "top_ids": [3059, 13769, 39104]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "東京食種", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2334.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "東京喰種", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3576.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "東京喰種-トーキョーグール-", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4322.9, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Kushu", "Toukyou Kushu", "Tokyo Ghoul:re", "Tokyo Kushu:re", "Toukyou Kuushu:re", "Tokyo Ghoul:re 2nd Season"], "top_ids": [22319, 36511, 37799]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "咒術回戰", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2714.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "狐忍", "hit": true, "position": 9, "kind": "title_substring", "n_returned": 10, "duration_ms": 2370.0, "error": null, "top_titles": ["Ninja Hattori-kun: Nin Nin Ninpo Enikki no Maki", "Ninja Hattori-kun Plus Perman: Ninja Kaijuu Jippou tai Miracle Tamago", "Nintama Rantarou: Saraba Ninjutsu Gakuen no Dan"], "top_ids": [21493, 29233, 36620]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "东京食种", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 3312.3, "error": null, "top_titles": ["Zhong Li", "种梨", "Shanghai Animation Film Studio", "Mu Qi Ling 2: Sheng Tian Ling Zhong", "木奇灵2之圣天灵种", "Fantasy", "Yao Jing Zhong Zhi Shou Ce", "Fairy Planting Manual"], "top_ids": [43592, 44471, 41093]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "咒術迴戰", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3393.1, "error": null, "top_titles": ["Jujutsu Kaisen", "JUJUTSU KAISEN", "呪術廻戦", "Jujutsu Kaisen 2nd Season", "JUJUTSU KAISEN Season 2", "呪術廻戦 第2期"], "top_ids": [113415, 145064]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "火影忍者", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2712.2, "error": null, "top_titles": ["Ninja Senshi Tobikage", "Kamen no Ninja Akakage", "Ninja Tamamaru no Hi no Youjin"], "top_ids": [3059, 13769, 39104]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "東京喰種", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4666.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "咒术回战", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 1860.8, "error": null, "top_titles": ["Jujutsu Kaisen", "JUJUTSU KAISEN", "呪術廻戦", "Jujutsu Kaisen 2nd Season", "JUJUTSU KAISEN Season 2", "呪術廻戦 第2期", "Jujutsu Kaisen 0", "JUJUTSU KAISEN 0"], "top_ids": [113415, 145064, 131573]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "東京食種", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 2683.5, "error": null, "top_titles": ["Tokyo Babylon PVs", "Tokyo Babylon PV by GoHands", "東京BABYLON PV", "Tokyo Ghoul", "Tokyo Kushu", "Toukyou Kushu", "Tokyo Ghoul √A", "Tokyo Ghoul Root A"], "top_ids": [58841, 22319, 27899]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "나루토", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2194.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "도쿄 구울", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3442.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "東京喰種", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 9381.3, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Kushu", "Toukyou Kushu", "Tokyo Ghoul: \"Jack\"", "Tokyo Ghoul: \"Pinto\""], "top_ids": ["8271", "10789", "11294"]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "咒術迴戰", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3658.8, "error": null, "top_titles": ["Jujutsu Kaisen", "JUJUTSU KAISEN", "呪術廻戦", "Jujutsu Kaisen 2nd Season", "JUJUTSU KAISEN Season 2", "呪術廻戦 第2期"], "top_ids": [113415, 145064]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Naruto", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3888.8, "error": null, "top_titles": ["Naruto", "Naruto: Shippuuden Movie 5 - Blood Prison", "Naruto: Honoo no Chuunin Shiken! Naruto vs. Konohamaru!!"], "top_ids": [20, 10589, 10686]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Tokyo Ghoul", "hit": true, "position": 5, "kind": "title_exact", "n_returned": 6, "duration_ms": 2595.8, "error": null, "top_titles": ["Tokyo Ghoul:re", "Toshinori Watanabe", "Chūji Mikasano", "Tokyo Ghoul: Pinto", "Tadahito Matsubayashi", "Sōichi Shimada"], "top_ids": ["21116", "20173", "17375"]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "咒术回战", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 1827.9, "error": null, "top_titles": ["Jujutsu Kaisen", "JUJUTSU KAISEN", "呪術廻戦", "Jujutsu Kaisen 2nd Season", "JUJUTSU KAISEN Season 2", "呪術廻戦 第2期", "Jujutsu Kaisen 0", "JUJUTSU KAISEN 0"], "top_ids": [113415, 145064, 131573]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "東京喰種", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5464.6, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Kushu", "Toukyou Kushu", "Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season", "Tokyo Ghoul:re", "Tokyo Kushu:re"], "top_ids": [22319, 27899, 36511]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "en", "backend": "shikimori", "variant": "enhance_romaji_to_katakana", "query": "ナルト", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 1866.7, "error": null, "top_titles": ["Naruto", "Naruto: The Cross Roads", "Naruto: Shippuuden Movie 3 - Hi no Ishi wo Tsugu Mono"], "top_ids": [20, 7367, 6325]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "东京喰种", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 2003.4, "error": null, "top_titles": ["Zhong Li", "种梨", "Shanghai Animation Film Studio", "Mu Qi Ling 2: Sheng Tian Ling Zhong", "木奇灵2之圣天灵种", "Fantasy", "Yao Jing Zhong Zhi Shou Ce", "Fairy Planting Manual"], "top_ids": [43592, 44471, 41093]} +{"sample_index": 9, "mal_id": 20, "popularity": 9, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "naruto", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2346.1, "error": null, "top_titles": ["Naruto", "Naruto: Shippuuden Movie 5 - Blood Prison", "Naruto: Honoo no Chuunin Shiken! Naruto vs. Konohamaru!!"], "top_ids": [20, 10589, 10686]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "주술회전", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 4139.3, "error": null, "top_titles": ["Jujutsu Kaisen", "JUJUTSU KAISEN", "呪術廻戦"], "top_ids": [113415]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Jujutsu Kaisen", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4715.7, "error": null, "top_titles": ["Jujutsu Kaisen", "JUJUTSU KAISEN", "呪術廻戦", "Jujutsu Kaisen 0", "JUJUTSU KAISEN 0", "呪術廻戦 0", "Jujutsu Kaisen: Shimetsu Kaiyuu - Zenpen", "JUJUTSU KAISEN Season 3: The Culling Game Part 1"], "top_ids": [113415, 131573, 172463]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "東京喰種-トーキョーグール-", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6217.1, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Ghoul: \"Jack\"", "Tokyo Ghoul: \"Pinto\""], "top_ids": [22319, 30458, 31297]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "东京喰种", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12179.2, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "東京喰種", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7732.2, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Kushu", "Toukyou Kushu", "Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season", "Tokyo Ghoul:re", "Tokyo Kushu:re"], "top_ids": [22319, 27899, 36511]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "東京喰種", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 2584.5, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Kushu", "Toukyou Kushu", "Tokyo Ghoul: \"Jack\"", "Tokyo Ghoul: \"Pinto\""], "top_ids": ["8271", "10789", "11294"]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "tokyo ghoul", "hit": true, "position": 5, "kind": "title_exact", "n_returned": 6, "duration_ms": 4563.2, "error": null, "top_titles": ["Tokyo Ghoul:re", "Toshinori Watanabe", "Chūji Mikasano", "Tokyo Ghoul: Pinto", "Tadahito Matsubayashi", "Sōichi Shimada"], "top_ids": ["21116", "20173", "17375"]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "东京喰种", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 2725.6, "error": null, "top_titles": ["Zhong Li", "种梨", "Shanghai Animation Film Studio", "Mu Qi Ling 2: Sheng Tian Ling Zhong", "木奇灵2之圣天灵种", "Fantasy", "Yao Jing Zhong Zhi Shou Ce", "Fairy Planting Manual"], "top_ids": [43592, 44471, 41093]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "东京食种", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4561.8, "error": null, "top_titles": ["Dongfang Ye Que Shitang Donghua", "Bravo Dong Dong", "Xiongmao Jing Jing"], "top_ids": [62274, 43863, 43944]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "东京喰种", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2901.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "도쿄 구울", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3230.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "呪術廻戦", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3901.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "도쿄 구울", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2483.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "東京食種", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3571.0, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Ghoul √A", "Tokyo Ghoul:re"], "top_ids": [22319, 27899, 36511]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "en", "backend": "anilist", "variant": "enhance_romaji_to_katakana", "query": "ジュジュツ カイセン", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8237.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "東京喰種", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2020.2, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Ghoul √A", "Tokyo Ghoul: \"Jack\""], "top_ids": [22319, 27899, 30458]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "东京喰种", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3716.4, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Ghoul √A", "Tokyo Ghoul:re"], "top_ids": [22319, 27899, 36511]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Tokyo Ghoul", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 6179.0, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Kushu", "Toukyou Kushu", "Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season", "Tokyo Ghoul:re", "トーキョーグール:re"], "top_ids": ["8271", "9135", "13929"]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "jujutsu kaisen", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4780.2, "error": null, "top_titles": ["Jujutsu Kaisen", "JUJUTSU KAISEN", "呪術廻戦", "Jujutsu Kaisen 0", "JUJUTSU KAISEN 0", "呪術廻戦 0", "Jujutsu Kaisen: Shimetsu Kaiyuu - Zenpen", "JUJUTSU KAISEN Season 3: The Culling Game Part 1"], "top_ids": [113415, 131573, 172463]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "咒术回战", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 10195.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "君の名は。", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3487.4, "error": null, "top_titles": ["Kimi no Na wa.", "Your Name.", "君の名は。", "Kimi no Mana wa Rina Witch", "Your Magical Name is Rina Witch", "君の魔名はリナ・ウィッチ"], "top_ids": [21519, 97775]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "tokyo ghoul", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 2195.1, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Kushu", "Toukyou Kushu", "Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season", "Tokyo Ghoul:re", "トーキョーグール:re"], "top_ids": ["8271", "9135", "13929"]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "咒術迴戰", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2820.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "你的名字。", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2803.4, "error": null, "top_titles": ["Kimi no Na wa.", "Your Name.", "君の名は。"], "top_ids": [21519]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "東京喰種", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7566.9, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Ghoul √A", "Tokyo Ghoul: \"Jack\""], "top_ids": [22319, 27899, 30458]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Tokyo Ghoul", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 15281.4, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Kushu", "Toukyou Kushu", "Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season", "Tokyo Ghoul:re", "Tokyo Kushu:re"], "top_ids": [22319, 27899, 36511]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "你的名字。", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2092.5, "error": null, "top_titles": ["Kimi no Na wa.", "Your Name.", "君の名は。"], "top_ids": [21519]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "呪術廻戦", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3719.7, "error": null, "top_titles": ["Jujutsu Kaisen", "Sorcery Fight", "Jujutsu Kaisen New Year's Special", "Jujutsu Kaisen (TV) Recap", "Sorcery Fight Recap"], "top_ids": ["42765", "43886", "43748"]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "东京喰种", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2557.4, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Ghoul √A", "Tokyo Ghoul:re"], "top_ids": [22319, 27899, 36511]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "도쿄 구울", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2292.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "呪术廻戦", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3216.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Tokyo Ghoul", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2959.8, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Ghoul √A", "Tokyo Ghoul: \"Jack\""], "top_ids": [22319, 27899, 30458]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "咒術迴戰", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12077.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "咒术回战", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6580.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "你的名字", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 12322.0, "error": null, "top_titles": ["Kimi no Na wa.", "Your Name.", "君の名は。"], "top_ids": [21519]} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "tokyo ghoul", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4488.5, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Kushu", "Toukyou Kushu", "Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season", "Tokyo Ghoul:re", "Tokyo Kushu:re"], "top_ids": [22319, 27899, 36511]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "咒術回戰", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4324.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 10, "mal_id": 22319, "popularity": 10, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "tokyo ghoul", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7148.1, "error": null, "top_titles": ["Tokyo Ghoul", "Tokyo Ghoul √A", "Tokyo Ghoul:re"], "top_ids": [22319, 27899, 36511]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "너의 이름은", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 5215.1, "error": null, "top_titles": ["Kimi no Na wa.", "Your Name.", "君の名は。"], "top_ids": [21519]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "주술회전", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8775.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "呪術廻戦", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3950.7, "error": null, "top_titles": ["Jujutsu Kaisen", "Sorcery Fight", "JJK", "Jujutsu Kaisen 2nd Season Recaps", "Jujutsu Kaisen Season 2 + Movie Recap", "呪術廻戦", "Jujutsu Kaisen Modulo Saishuu Sankan Hatsubai Kinen Special PV", "『呪術廻戦≡』最終3巻発売記念 スペシャルPV"], "top_ids": [40748, 56243, 64080]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "咒術迴戰", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4575.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "呪術廻戦", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2804.7, "error": null, "top_titles": ["Jujutsu Kaisen", "Jujutsu Kaisen 2nd Season Recaps", "Jujutsu Kaisen Official PVs"], "top_ids": [40748, 56243, 38777]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Your Name.", "hit": true, "position": 1, "kind": "id", "n_returned": 5, "duration_ms": 2439.0, "error": null, "top_titles": ["Suntory Minami Alps no Tennen Mizu", "サントリー 南アルプスの天然水", "Kimi no Na wa.", "Your Name.", "君の名は。", "Kimi no Na wo Yobeba", "キミの名を呼べば"], "top_ids": [97962, 21519, 5643]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "呪术廻戦", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2585.1, "error": null, "top_titles": ["Jujutsu Kaisen", "Jujutsu Kaisen 2nd Season Recaps", "Jujutsu Kaisen Official PVs"], "top_ids": [40748, 56243, 38777]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "咒术回战", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3271.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Jujutsu Kaisen", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 7, "duration_ms": 6196.9, "error": null, "top_titles": ["Jujutsu Kaisen ≡ Saishū 3 Kan Hatsubai Kinen Special PV", "Shun Miyakawa", "Yoshimasa Terui", "Jujutsu Kaisen: Execution", "Shōta Goshozono", "Hiroshi Seko", "JUJUTSU KAISEN: Hidden Inventory / Premature Death – The Movie"], "top_ids": ["39353", "37721", "33377"]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "ja", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "呪术廻戦", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 6378.7, "error": null, "top_titles": ["Jujutsu Kaisen Modulo Saishuu Sankan Hatsubai Kinen Special PV", "『呪術廻戦≡』最終3巻発売記念 スペシャルPV", "MAPPA", "Jujutsu Kaisen", "Sorcery Fight", "JJK", "Jujutsu Kaisen 2nd Season", "Jujutsu Kaisen: Kaigyoku Gyokusetsu"], "top_ids": [64080, 40748, 51009]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "咒术回战", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4165.2, "error": null, "top_titles": ["Zhandou Wang Zhi Jufeng Zhan Hun", "Zhandou Wang Zhi Jufeng Zhan Hun 5", "Zhandou Wang Zhi Jufeng Zhan Hun 3"], "top_ids": [36423, 42468, 36427]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "咒術迴戰", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4681.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "咒术回战", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3343.7, "error": null, "top_titles": ["Zhe Tian Movie: Bei Guan Zhan Wang Teng", "Shrounding the Heavens Movie: Fighting Against Wang Teng with Copper Coffin", "Zhe Tian Juchang Ban: Bei Guan Zhan Wang Teng", "Fanren Xiu Xian Zhuan: Mulan Zhi Zhan", "A Mortal's Journey 5th Season", "A Record of a Mortal's Journey to Immortality 5th Season"], "top_ids": [63606, 63606, 63240]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "咒术回战", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2674.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "咒術回戰", "hit": true, "position": 2, "kind": "title_substring", "n_returned": 10, "duration_ms": 4299.2, "error": null, "top_titles": ["Kaifuku Jutsushi no Yarinaoshi", "Okusama no Kaifuku Jutsu The Animation", "Jujutsu Kaisen: Shimetsu Kaiyuu - Zenpen"], "top_ids": [40750, 55145, 57658]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "咒術回戰", "hit": true, "position": 6, "kind": "title_substring", "n_returned": 10, "duration_ms": 2828.1, "error": null, "top_titles": ["Senki no Hikari", "Anime Nova Project", "戰キノ光", "Luo Xiaohei Zhanji (Movie)", "The Legend of Luoxiaohei", "Luo Xiao Hei Zhan Ji Movie", "Feng Yu Zhou", "画江湖之风语咒"], "top_ids": [55098, 40211, 38489]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "jujutsu kaisen", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 7, "duration_ms": 5304.5, "error": null, "top_titles": ["Jujutsu Kaisen ≡ Saishū 3 Kan Hatsubai Kinen Special PV", "Shun Miyakawa", "Yoshimasa Terui", "Jujutsu Kaisen: Execution", "Shōta Goshozono", "Hiroshi Seko", "JUJUTSU KAISEN: Hidden Inventory / Premature Death – The Movie"], "top_ids": ["39353", "37721", "33377"]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "주술회전", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4797.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "your name", "hit": true, "position": 1, "kind": "id", "n_returned": 5, "duration_ms": 2573.3, "error": null, "top_titles": ["Suntory Minami Alps no Tennen Mizu", "サントリー 南アルプスの天然水", "Kimi no Na wa.", "Your Name.", "君の名は。", "Kimi no Na wo Yobeba", "キミの名を呼べば"], "top_ids": [97962, 21519, 5643]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "君の名は。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2445.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "咒術迴戰", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6611.6, "error": null, "top_titles": ["Kijutsushi x Majutsushi: Osaka Tanteibu no Jikenbo", "Isekai Cheat Magician: Yoiboshi no Matsuri to Majutsushi", "Feng Yu Zhou"], "top_ids": [4497, 49297, 38489]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Jujutsu Kaisen", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2999.8, "error": null, "top_titles": ["Jujutsu Kaisen", "Sorcery Fight", "Jujutsu Kaisen Season 2", "JJK2", "Jujutsu Kaisen 2nd Season"], "top_ids": ["42765", "43748", "45857"]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "進撃の巨人 Season2", "hit": true, "position": 2, "kind": "title_substring", "n_returned": 4, "duration_ms": 3324.5, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Attack on Titan Final Season Part 2", "進撃の巨人 The Final Season Part 2", "Shingeki no Kyojin Season 3 Part 2", "Attack on Titan Season 3 Part 2", "進撃の巨人 Season3 Part.2", "Shingeki no Kyojin Season 2: Kakusei no Houkou", "Attack on Titan: The Roar of Awakening"], "top_ids": [131681, 104578, 100465]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "你的名字。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3193.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "咒术回战", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3637.9, "error": null, "top_titles": ["Zhandou Wang Zhi Jufeng Zhan Hun", "Zhandou Wang Zhi Jufeng Zhan Hun 5", "Zhandou Wang Zhi Jufeng Zhan Hun 3"], "top_ids": [36423, 42468, 36427]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "进击的巨人 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3090.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "進擊的巨人 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2114.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "咒術迴戰", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12271.7, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "咒術迴戰", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3723.9, "error": null, "top_titles": ["Kijutsushi x Majutsushi: Osaka Tanteibu no Jikenbo", "Isekai Cheat Magician: Yoiboshi no Matsuri to Majutsushi", "Feng Yu Zhou"], "top_ids": [4497, 49297, 38489]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "你的名字。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6443.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "咒术回战", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3519.9, "error": null, "top_titles": ["Zhe Tian Movie: Bei Guan Zhan Wang Teng", "Shrounding the Heavens Movie: Fighting Against Wang Teng with Copper Coffin", "Zhe Tian Juchang Ban: Bei Guan Zhan Wang Teng", "Fanren Xiu Xian Zhuan: Mulan Zhi Zhan", "A Mortal's Journey 5th Season", "A Record of a Mortal's Journey to Immortality 5th Season"], "top_ids": [63606, 63606, 63240]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "進擊的巨人 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3707.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "en", "backend": "kitsu", "variant": "enhance_romaji_to_katakana", "query": "ジュジュツ カイセン", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6450.5, "error": null, "top_titles": ["Xion", "Gaiking: Legend of Daiku-Maryu", "Great Sky Demon Dragon Gaiking", "Gaiking: Legend of Daikuu-Maryuu", "Saikin Ponta", "Recently Ponta", "Lately Ponta"], "top_ids": ["48211", "1662", "10309"]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "你的名字", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2662.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "咒术回战", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6326.4, "error": null, "top_titles": ["Zhandou Wang Zhi Jufeng Zhan Hun", "Zhandou Wang Zhi Jufeng Zhan Hun 5", "Zhandou Wang Zhi Jufeng Zhan Hun 3"], "top_ids": [36423, 42468, 36427]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "进击的巨人 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4039.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "너의 이름은", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2012.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "jujutsu kaisen", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4084.9, "error": null, "top_titles": ["Jujutsu Kaisen", "Sorcery Fight", "Jujutsu Kaisen Season 2", "JJK2", "Jujutsu Kaisen 2nd Season"], "top_ids": ["42765", "43748", "45857"]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "咒術迴戰", "hit": true, "position": 6, "kind": "title_substring", "n_returned": 10, "duration_ms": 5323.3, "error": null, "top_titles": ["Senki no Hikari", "Anime Nova Project", "戰キノ光", "Luo Xiaohei Zhanji (Movie)", "The Legend of Luoxiaohei", "Luo Xiao Hei Zhan Ji Movie", "Feng Yu Zhou", "画江湖之风语咒"], "top_ids": [55098, 40211, 38489]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "진격의 거인 2기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2145.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "주술회전", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2437.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "君の名は。", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2380.5, "error": null, "top_titles": ["Kimi no Na wa."], "top_ids": ["11614"]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Attack on Titan Season 2", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 1844.9, "error": null, "top_titles": ["Shingeki no Kyojin Season 2", "Attack on Titan Season 2", "進撃の巨人 Season2", "Shingeki no Kyojin: The Final Season Part 2", "Attack on Titan Final Season Part 2", "進撃の巨人 The Final Season Part 2", "Shingeki no Kyojin Season 3 Part 2", "Attack on Titan Season 3 Part 2"], "top_ids": [20958, 131681, 104578]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Jujutsu Kaisen", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2299.8, "error": null, "top_titles": ["Jujutsu Kaisen", "Jujutsu Kaisen Official PVs", "Jujutsu Kaisen 0 Movie"], "top_ids": [40748, 38777, 48561]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "你的名字。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4033.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "咒术回战", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6617.4, "error": null, "top_titles": ["Zhe Tian Movie: Bei Guan Zhan Wang Teng", "Shrounding the Heavens Movie: Fighting Against Wang Teng with Copper Coffin", "Zhe Tian Juchang Ban: Bei Guan Zhan Wang Teng", "Fanren Xiu Xian Zhuan: Mulan Zhi Zhan", "A Mortal's Journey 5th Season", "A Record of a Mortal's Journey to Immortality 5th Season"], "top_ids": [63606, 63606, 63240]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Your Name.", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 8155.9, "error": null, "top_titles": ["your name.", "Makoto Shinkai", "Kenji Imura"], "top_ids": ["18171"]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "en", "backend": "shikimori", "variant": "enhance_romaji_to_katakana", "query": "ジュジュツ カイセン", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2037.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "주술회전", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3141.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "jujutsu kaisen", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2914.1, "error": null, "top_titles": ["Jujutsu Kaisen", "Jujutsu Kaisen 2nd Season", "Jujutsu Kaisen 0 Movie"], "top_ids": [40748, 51009, 48561]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "君の名は。", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3134.6, "error": null, "top_titles": ["Kimi no Na wa.", "Kimi no Mana wa Rina Witch", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.: Menma e no Tegami"], "top_ids": [32281, 34246, 38963]} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Jujutsu Kaisen", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5984.2, "error": null, "top_titles": ["Jujutsu Kaisen", "Sorcery Fight", "JJK", "Jujutsu Kaisen 2nd Season", "Jujutsu Kaisen: Kaigyoku Gyokusetsu", "Jujutsu Kaisen: Shibuya Jihen", "Jujutsu Kaisen 0 Movie", "Gekijouban Jujutsu Kaisen 0"], "top_ids": [40748, 51009, 48561]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "你的名字。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12639.7, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan season 2", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 2725.4, "error": null, "top_titles": ["Shingeki no Kyojin Season 2", "Attack on Titan Season 2", "進撃の巨人 Season2", "Shingeki no Kyojin: The Final Season Part 2", "Attack on Titan Final Season Part 2", "進撃の巨人 The Final Season Part 2", "Shingeki no Kyojin Season 3 Part 2", "Attack on Titan Season 3 Part 2"], "top_ids": [20958, 131681, 104578]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "你的名字", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3296.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "-ナルト- 疾風伝", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 4438.0, "error": null, "top_titles": ["NARUTO: Shippuuden", "Naruto: Shippuden", "NARUTO -ナルト- 疾風伝", "NARUTO: Shippuuden Movie", "Naruto Shippuden the Movie", "劇場版 NARUTO -ナルト- 疾風伝", "NARUTO: Shippuuden - Shippu! \"Konoha Gakuen\" Den", "Naruto Shippuden: Konoha Gakuen - Special"], "top_ids": [1735, 2472, 4134]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "your name", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 4698.4, "error": null, "top_titles": ["your name.", "Makoto Shinkai", "Kenji Imura"], "top_ids": ["18171"]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "너의 이름은", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 3472.6, "error": null, "top_titles": ["Nae Ireumeun Dokgotak"], "top_ids": ["7581"]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "火影忍者 疾风传", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2625.8, "error": null, "top_titles": ["NARUTO: Shippuuden", "Naruto: Shippuden", "NARUTO -ナルト- 疾風伝"], "top_ids": [1735]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "進撃の巨人 Season2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2787.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "en", "backend": "jikan", "variant": "enhance_romaji_to_katakana", "query": "ジュジュツ カイセン", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3613.4, "error": null, "top_titles": ["Cencoroll", "センコロール", "Cencoroll: Der Film", "Centaur no Nayami", "Centaur's Worries", "セントールの悩み", "Cencoroll Connect", "Cencoroll 2"], "top_ids": [3087, 34525, 9488]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "你的名字。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13185.2, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "火影忍者 疾風傳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3084.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 11, "mal_id": 40748, "popularity": 11, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "jujutsu kaisen", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2825.0, "error": null, "top_titles": ["Jujutsu Kaisen", "Sorcery Fight", "JJK", "Jujutsu Kaisen 2nd Season", "Jujutsu Kaisen: Kaigyoku Gyokusetsu", "Jujutsu Kaisen: Shibuya Jihen", "Jujutsu Kaisen 0 Movie", "Gekijouban Jujutsu Kaisen 0"], "top_ids": [40748, 51009, 48561]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Your Name.", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6130.9, "error": null, "top_titles": ["Kimi no Na wa.", "Bleach Movie 3: Fade to Black - Kimi no Na wo Yobu", "Fade to Black: Call Out Your Name", "Selector Destructed WIXOSS Movie"], "top_ids": ["11614", "3817", "11213"]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "你的名字。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3926.4, "error": null, "top_titles": ["Quefa Mingzi de Changsuo", "Shouhu Lian Meng ROY6: Senlin Li de Minini", "Kuailede Shuzi"], "top_ids": [52493, 53226, 43552]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "火影忍者疾風傳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3365.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "君の名は。", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3482.9, "error": null, "top_titles": ["Kimi no Na wa.", "君の名は。", "Your Name.", "Kimi no Mana wa Rina Witch", "君の魔名はリナ・ウィッチ", "Your Magical Name is Rina Witch", "Bleach Movie 3: Fade to Black - Kimi no Na wo Yobu", "Fade to Black: Call Out Your Name"], "top_ids": [32281, 34246, 4835]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "你的名字", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2816.4, "error": null, "top_titles": ["Quefa Mingzi de Changsuo", "Shouhu Lian Meng ROY6: Senlin Li de Minini", "Kuailede Shuzi"], "top_ids": [52493, 53226, 43552]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "火影忍者疾风传", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3849.9, "error": null, "top_titles": ["NARUTO: Shippuuden", "Naruto: Shippuden", "NARUTO -ナルト- 疾風伝"], "top_ids": [1735]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "进击的巨人 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9445.6, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "你的名字。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3706.6, "error": null, "top_titles": ["Buzhuo Ni de She Nian Hao Yun", "Irochigai no Arbo", "違いのアーボ", "Ni De Rensheng Shi Wo Lai Chi Le", "你的人生是我来迟了", "1st Kiss", "Nuhai, Ni De Yi Fenzhong You Duo Zhang", "女孩,你的一分钟有多长"], "top_ids": [60848, 56987, 44681]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "your name", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4066.2, "error": null, "top_titles": ["Kimi no Na wa.", "Bleach Movie 3: Fade to Black - Kimi no Na wo Yobu", "Fade to Black: Call Out Your Name", "Selector Destructed WIXOSS Movie"], "top_ids": ["11614", "3817", "11213"]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "進擊的巨人 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2846.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "너의 이름은", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 7158.1, "error": null, "top_titles": ["Neoui Moseub", "Neoui Mogsoli", "Nae Ireumeun Dokgotak"], "top_ids": [51343, 54512, 17100]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "進撃の巨人 Season2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3245.4, "error": null, "top_titles": ["Attack on Titan Season 2", "Attack on Titan Season 3", "Attack on Titan Season 3 Part 2"], "top_ids": ["8671", "13569", "41982"]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "你的名字。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5489.8, "error": null, "top_titles": ["Buzhuo Ni de She Nian Hao Yun", "Irochigai no Arbo", "違いのアーボ", "Ni De Rensheng Shi Wo Lai Chi Le", "你的人生是我来迟了", "1st Kiss", "Nuhai, Ni De Yi Fenzhong You Duo Zhang", "女孩,你的一分钟有多长"], "top_ids": [60848, 56987, 44681]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "진격의 거인 2기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3820.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "火影忍者疾風傳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7829.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "进击的巨人 第二季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2227.7, "error": null, "top_titles": ["Quanzhi Gaoshou 2nd Season", "Quan Zhi Gao Shou Season 2", "Full-Time Expert Season 2", "Xian Wang de Richang Shenghuo 2nd Season", "Shiguang Dailiren 2", "Link Click 2nd Season", "LINK CLICK II"], "top_ids": ["41358", "43795", "45504"]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Your Name.", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2558.9, "error": null, "top_titles": ["Kimi no Na wa.", "Suntory Minami Alps no Tennensui", "Kimi no Na wo Yobeba"], "top_ids": [32281, 33902, 5643]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "火影忍者疾风传", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 1557.2, "error": null, "top_titles": ["NARUTO: Shippuuden", "Naruto: Shippuden", "NARUTO -ナルト- 疾風伝"], "top_ids": [1735]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Attack on Titan Season 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4136.4, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "進擊的巨人 第二季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3220.7, "error": null, "top_titles": ["Quanzhi Gaoshou 2nd Season", "Quan Zhi Gao Shou Season 2", "Full-Time Expert Season 2", "Xian Wang de Richang Shenghuo 2nd Season", "Shiguang Dailiren 2", "Link Click 2nd Season", "LINK CLICK II"], "top_ids": ["41358", "43795", "45504"]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "你的名字", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 6586.4, "error": null, "top_titles": ["Buzhuo Ni de She Nian Hao Yun", "Irochigai no Arbo", "違いのアーボ", "Ni De Rensheng Shi Wo Lai Chi Le", "你的人生是我来迟了", "1st Kiss", "Quefa Mingzi de Changsuo", "缺乏名字的場所"], "top_ids": [60848, 56987, 52493]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "나루토 질풍전", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3941.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "進擊的巨人 第二季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4319.7, "error": null, "top_titles": ["Quanzhi Gaoshou 2nd Season", "Quan Zhi Gao Shou Season 2", "Full-Time Expert Season 2", "Xian Wang de Richang Shenghuo 2nd Season", "Shiguang Dailiren 2", "Link Click 2nd Season", "LINK CLICK II"], "top_ids": ["41358", "43795", "45504"]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "너의 이름은", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 3288.2, "error": null, "top_titles": ["Nae Ireumeun Dokgotak", "내 이름은 독고탁", "My name is Dokgo Tak", "Neoui Moseub", "너의 모습", "Imagine", "Neoui Mogsoli", "너의 목소리"], "top_ids": [17100, 51343, 54512]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "进击的巨人 第二季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 1788.4, "error": null, "top_titles": ["Quanzhi Gaoshou 2nd Season", "Quan Zhi Gao Shou Season 2", "Full-Time Expert Season 2", "Xian Wang de Richang Shenghuo 2nd Season", "Shiguang Dailiren 2", "Link Click 2nd Season", "LINK CLICK II"], "top_ids": ["41358", "43795", "45504"]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "your name", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5533.1, "error": null, "top_titles": ["Kimi no Na wa.", "Suntory Minami Alps no Tennensui", "Kimi no Na wo Yobeba"], "top_ids": [32281, 33902, 5643]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Naruto Shippuden", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5191.5, "error": null, "top_titles": ["NARUTO: Shippuuden", "Naruto: Shippuden", "NARUTO -ナルト- 疾風伝", "NARUTO: Shippuuden Movie", "Naruto Shippuden the Movie", "劇場版 NARUTO -ナルト- 疾風伝", "NARUTO: Shippuuden - Kizuna", "Naruto Shippuden the Movie: Bonds"], "top_ids": [1735, 2472, 4437]} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Your Name.", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4116.1, "error": null, "top_titles": ["Kimi no Na wa.", "君の名は。", "Your Name.", "Suntory Minami Alps no Tennensui", "Bleach Movie 3: Fade to Black - Kimi no Na wo Yobu", "Fade to Black: Call Out Your Name", "劇場版 BLEACH Fade to Black 君の名を呼ぶ"], "top_ids": [32281, 33902, 4835]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "진격의 거인 2기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3257.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "進撃の巨人 Season2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4655.1, "error": null, "top_titles": ["Shingeki no Kyojin Season 2", "Shingeki no Kyojin Season 2 Movie: Kakusei no Houkou", "Shingeki no Kyojin: Ano Hi Kara"], "top_ids": [25777, 36702, 19285]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "en", "backend": "anilist", "variant": "enhance_romaji_to_katakana", "query": "ナルト シップデン", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2622.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Attack on Titan Season 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 3576.6, "error": null, "top_titles": ["Attack on Titan Season 2", "10-pun de Oitsukeru: Shingeki no Kyojin", "Catch up in 10 minutes! Anime \"Attack on Titan\" Season 1-2 Digest", "Attack on Titan Season 3 Part 2"], "top_ids": ["8671", "47129", "41982"]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "进击的巨人 第二季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3151.0, "error": null, "top_titles": ["Biao Ren Er", "Mo Jing Lieren 2nd Season", "Dianji Xiaozi 2nd Season"], "top_ids": [62241, 33603, 44020]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan season 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5643.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 12, "mal_id": 32281, "popularity": 12, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "your name", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3764.4, "error": null, "top_titles": ["Kimi no Na wa.", "君の名は。", "Your Name.", "Suntory Minami Alps no Tennensui", "Bleach Movie 3: Fade to Black - Kimi no Na wo Yobu", "Fade to Black: Call Out Your Name", "劇場版 BLEACH Fade to Black 君の名を呼ぶ"], "top_ids": [32281, 33902, 4835]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "naruto shippuden", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3793.6, "error": null, "top_titles": ["NARUTO: Shippuuden", "Naruto: Shippuden", "NARUTO -ナルト- 疾風伝", "NARUTO: Shippuuden Movie", "Naruto Shippuden the Movie", "劇場版 NARUTO -ナルト- 疾風伝", "NARUTO: Shippuuden - Kizuna", "Naruto Shippuden the Movie: Bonds"], "top_ids": [1735, 2472, 4437]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "進擊的巨人 第二季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2297.4, "error": null, "top_titles": ["Biao Ren Er", "Mo Jing Lieren 2nd Season", "Gon de Hanta 2nd Season"], "top_ids": [62241, 33603, 55118]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "-ナルト- 疾風伝", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3697.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "進擊的巨人 第二季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 1880.4, "error": null, "top_titles": ["Biao Ren Er", "Mo Jing Lieren 2nd Season", "Gon de Hanta 2nd Season"], "top_ids": [62241, 33603, 55118]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "進撃の巨人 Season2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3424.1, "error": null, "top_titles": ["Shingeki no Kyojin Season 2", "進撃の巨人 Season2", "Attack on Titan Season 2", "Shingeki no Kyojin Season 2 Movie: Kakusei no Houkou", "Attack on Titan Season 2 Movie: The Roar of Awakening", "劇場版 進撃の巨人 Season2〜覚醒の咆哮〜", "Shingeki no Kyojin: The Final Season", "Shingeki no Kyojin Season 4"], "top_ids": [25777, 36702, 40028]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan season 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 3837.0, "error": null, "top_titles": ["Attack on Titan Season 2", "10-pun de Oitsukeru: Shingeki no Kyojin", "Catch up in 10 minutes! Anime \"Attack on Titan\" Season 1-2 Digest", "Attack on Titan Season 3 Part 2"], "top_ids": ["8671", "47129", "41982"]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 4644.7, "error": null, "top_titles": ["Boku no Hero Academia", "My Hero Academia", "僕のヒーローアカデミア", "Boku no Hero Academia 4", "My Hero Academia Season 4", "僕のヒーローアカデミア4", "Boku no Hero Academia 2", "My Hero Academia Season 2"], "top_ids": [21459, 104276, 21856]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "-ナルト- 疾風伝", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 3217.2, "error": null, "top_titles": ["Naruto Shippuuden: Shippuu! \"Konoha Gakuen\" Den", "NARUTO Shippu Konoha Gakuen Den Special", "Konoha High"], "top_ids": ["3484"]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "进击的巨人 第二季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4166.7, "error": null, "top_titles": ["Biao Ren Er", "Mo Jing Lieren 2nd Season", "Dianji Xiaozi 2nd Season"], "top_ids": [62241, 33603, 44020]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "进击的巨人 第二季", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 4035.0, "error": null, "top_titles": ["Jinji de Ji Jia: Sheng Jie Fei Tuo", "进击的机甲之圣戒飞陀", "Mecha", "Jian Lai 2nd Season", "The Swords 2nd Season", "Sword of Coming 2nd Season", "Zhege Nianji Huan Neng Dang Daxia Ma 2nd Season", "这个年纪还能当大侠吗 第二季"], "top_ids": [47063, 62728, 61948]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "火影忍者 疾风传", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2235.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "火影忍者 疾風傳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1920.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "진격의 거인 2기", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4085.5, "error": null, "top_titles": ["Dudadakung 2nd Season", "Biklonz 2nd Season", "Athlon Tobot 2"], "top_ids": [48170, 59948, 52737]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "火影忍者疾風傳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2662.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "進擊的巨人 第二季", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 7292.0, "error": null, "top_titles": ["Jian Lai 2nd Season", "The Swords 2nd Season", "Sword of Coming 2nd Season", "Zhege Nianji Huan Neng Dang Daxia Ma 2nd Season", "这个年纪还能当大侠吗 第二季", "Painting Dream", "Da Zhuzai: Nian Fan 2", "The Great Ruler 2nd Season"], "top_ids": [62728, 61948, 61556]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "火影忍者疾风传", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4002.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "我的英雄学院 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12251.9, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "火影忍者 疾风传", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 15407.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "我的英雄學院 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2487.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "火影忍者疾風傳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2683.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Attack on Titan Season 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 9567.1, "error": null, "top_titles": ["Shingeki no Kyojin Season 2", "Mahou Shoujo Lyrical Nanoha A's", "Shingeki no Kyojin Season 3 Part 2"], "top_ids": [25777, 77, 38524]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "火影忍者疾風傳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3499.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "進擊的巨人 第二季", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 6933.6, "error": null, "top_titles": ["Jian Lai 2nd Season", "The Swords 2nd Season", "Sword of Coming 2nd Season", "Zhege Nianji Huan Neng Dang Daxia Ma 2nd Season", "这个年纪还能当大侠吗 第二季", "Painting Dream", "Da Zhuzai: Nian Fan 2", "The Great Ruler 2nd Season"], "top_ids": [62728, 61948, 61556]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "我的英雄学院 第二季", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2455.6, "error": null, "top_titles": ["Boku no Hero Academia 2", "My Hero Academia Season 2", "僕のヒーローアカデミア2"], "top_ids": [21856]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "进击的巨人 第二季", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 2936.0, "error": null, "top_titles": ["Jinji de Ji Jia: Sheng Jie Fei Tuo", "进击的机甲之圣戒飞陀", "Mecha", "Jian Lai 2nd Season", "The Swords 2nd Season", "Sword of Coming 2nd Season", "Zhege Nianji Huan Neng Dang Daxia Ma 2nd Season", "这个年纪还能当大侠吗 第二季"], "top_ids": [47063, 62728, 61948]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "火影忍者疾風傳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4225.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "火影忍者疾风传", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5230.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "진격의 거인 2기", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2871.3, "error": null, "top_titles": ["Athlon Tobot 2", "Athlon Tobot 2nd Season", "애슬론 또봇 2기", "Bubble Bubble Cook 2nd Season", "보글보글 쿡 2기", "Studio Vandal", "Dudadakung 2nd Season", "두다다쿵 2기"], "top_ids": [52737, 55078, 48170]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "나루토 질풍전", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3183.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "나루토 질풍전", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2999.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Attack on Titan Season 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2087.9, "error": null, "top_titles": ["Shingeki no Kyojin Season 2", "進撃の巨人 Season2", "Attack on Titan Season 2", "Shingeki no Kyojin Season 2 Movie: Kakusei no Houkou", "Attack on Titan Season 2 Movie: The Roar of Awakening", "劇場版 進撃の巨人 Season2〜覚醒の咆哮〜", "Shingeki no Kyojin Season 3 Part 2", "進撃の巨人 Season3 Part.2"], "top_ids": [25777, 36702, 38524]} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan season 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5536.6, "error": null, "top_titles": ["Shingeki no Kyojin Season 2", "Mahou Shoujo Lyrical Nanoha A's", "Shingeki no Kyojin Season 3 Part 2"], "top_ids": [25777, 77, 38524]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "我的英雄學院 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8698.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Naruto Shippuden", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 8, "duration_ms": 4508.0, "error": null, "top_titles": ["Naruto Shippūden: The Burning Chūnin Exam! Naruto vs. Konohamaru!!", "Hayato Date", "Yuka Miyata", "Naruto Shippūden: Shippū! \"Konoha Gakuen\" Den", "Toshiyuki Tsuru", "Masashi Kishimoto", "Naruto Shippūden: Blood Prison", "Masahiko Murata"], "top_ids": ["15415", "13113", "12869"]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "我的英雄学院 第二季", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 1907.8, "error": null, "top_titles": ["Boku no Hero Academia 2", "My Hero Academia Season 2", "僕のヒーローアカデミア2"], "top_ids": [21856]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "-ナルト- 疾風伝", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4886.1, "error": null, "top_titles": ["Naruto: Shippuuden", "Naruto: Shippuuden - Shippuu! \"Konoha Gakuen\" Den", "Naruto: Shippuuden - Sunny Side Battle"], "top_ids": [1735, 4134, 19511]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Naruto Shippuden", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 6348.3, "error": null, "top_titles": ["Naruto: Shippuuden", "Naruto Hurricane Chronicles", "Naruto: Shippuuden Movie 1", "Naruto Shippuuden Movie", "Naruto Movie 4", "Naruto: Shippuuden Movie 2 - Kizuna", "Naruto Movie 5", "Naruto Shippuuden Movie 2"], "top_ids": ["1555", "2245", "3606"]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "我的英雄學院 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2478.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 13, "mal_id": 25777, "popularity": 13, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan season 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4695.6, "error": null, "top_titles": ["Shingeki no Kyojin Season 2", "進撃の巨人 Season2", "Attack on Titan Season 2", "Shingeki no Kyojin Season 2 Movie: Kakusei no Houkou", "Attack on Titan Season 2 Movie: The Roar of Awakening", "劇場版 進撃の巨人 Season2〜覚醒の咆哮〜", "Shingeki no Kyojin Season 3 Part 2", "進撃の巨人 Season3 Part.2"], "top_ids": [25777, 36702, 38524]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "火影忍者 疾风传", "hit": true, "position": 4, "kind": "title_substring", "n_returned": 10, "duration_ms": 5224.8, "error": null, "top_titles": ["Renzhe Meng Jian Chuan", "Ninja Senshi Tobikage", "Kamen no Ninja Akakage"], "top_ids": [47121, 3059, 13769]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "-ナルト- 疾風伝", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3771.1, "error": null, "top_titles": ["Naruto: Shippuuden", "Naruto Hurricane Chronicles", "-ナルト- 疾風伝", "Naruto: Shippuuden Movie 1", "Naruto Shippuden Movie", "Naruto Movie 4", "Naruto: Shippuuden Movie 2 - Kizuna", "Naruto Movie 5"], "top_ids": [1735, 2472, 4437]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "火影忍者 疾風傳", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 2886.5, "error": null, "top_titles": ["Naruto: Shippuuden Movie 3 - Hi no Ishi wo Tsugu Mono", "Ninja Senshi Tobikage", "Kamen no Ninja Akakage"], "top_ids": [6325, 3059, 13769]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "나히아 2기", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 8866.1, "error": null, "top_titles": ["Boku no Hero Academia 2", "My Hero Academia Season 2", "僕のヒーローアカデミア2"], "top_ids": [21856]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "火影忍者疾風傳", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 2770.4, "error": null, "top_titles": ["Naruto: Shippuuden Movie 3 - Hi no Ishi wo Tsugu Mono", "Ninja Senshi Tobikage", "Kamen no Ninja Akakage"], "top_ids": [6325, 3059, 13769]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "My Hero Academia Season 2", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2627.4, "error": null, "top_titles": ["Boku no Hero Academia 2", "My Hero Academia Season 2", "僕のヒーローアカデミア2", "Vigilante: Boku no Hero Academia ILLEGALS 2nd Season", "My Hero Academia: Vigilantes Season 2", "ヴィジランテ -僕のヒーローアカデミア ILLEGALS- 第2期"], "top_ids": [21856, 195322]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "naruto shippuden", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 8, "duration_ms": 10263.9, "error": null, "top_titles": ["Naruto Shippūden: The Burning Chūnin Exam! Naruto vs. Konohamaru!!", "Hayato Date", "Yuka Miyata", "Naruto Shippūden: Shippū! \"Konoha Gakuen\" Den", "Toshiyuki Tsuru", "Masashi Kishimoto", "Naruto Shippūden: Blood Prison", "Masahiko Murata"], "top_ids": ["15415", "13113", "12869"]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "火影忍者疾风传", "hit": true, "position": 4, "kind": "title_substring", "n_returned": 10, "duration_ms": 3496.5, "error": null, "top_titles": ["Renzhe Meng Jian Chuan", "Ninja Senshi Tobikage", "Kamen no Ninja Akakage"], "top_ids": [47121, 3059, 13769]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4382.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "火影忍者 疾风传", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12193.8, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "en", "backend": "kitsu", "variant": "enhance_romaji_to_katakana", "query": "ナルト シップデン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3623.4, "error": null, "top_titles": ["Naruto: Shippuuden", "Naruto Hurricane Chronicles", "Naruto", "NARUTO", "Naruto: Shippuuden Movie 3 - Hi no Ishi wo Tsugu Mono", "Naruto Shippuuden: Gekijouban Naruto Shippuuden: Hi no Ishi o Tsugu Mono", "Naruto Shippuuden Movie 3"], "top_ids": ["1555", "11", "4520"]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "火影忍者疾風傳", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 6867.7, "error": null, "top_titles": ["Naruto: Shippuuden Movie 3 - Hi no Ishi wo Tsugu Mono", "Ninja Senshi Tobikage", "Kamen no Ninja Akakage"], "top_ids": [6325, 3059, 13769]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "我的英雄学院 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5123.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia season 2", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2811.7, "error": null, "top_titles": ["Boku no Hero Academia 2", "My Hero Academia Season 2", "僕のヒーローアカデミア2", "Vigilante: Boku no Hero Academia ILLEGALS 2nd Season", "My Hero Academia: Vigilantes Season 2", "ヴィジランテ -僕のヒーローアカデミア ILLEGALS- 第2期"], "top_ids": [21856, 195322]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "火影忍者疾风传", "hit": true, "position": 4, "kind": "title_substring", "n_returned": 10, "duration_ms": 2944.7, "error": null, "top_titles": ["Renzhe Meng Jian Chuan", "Ninja Senshi Tobikage", "Kamen no Ninja Akakage"], "top_ids": [47121, 3059, 13769]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "naruto shippuden", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 3843.2, "error": null, "top_titles": ["Naruto: Shippuuden", "Naruto Hurricane Chronicles", "Naruto: Shippuuden Movie 1", "Naruto Shippuuden Movie", "Naruto Movie 4", "Naruto: Shippuuden Movie 2 - Kizuna", "Naruto Movie 5", "Naruto Shippuuden Movie 2"], "top_ids": ["1555", "2245", "3606"]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "나루토 질풍전", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2749.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 2112.4, "error": null, "top_titles": ["Boku no Hero Academia", "Boku no Hero Academia the Movie: Futari no Hero", "Boku no Hero Academia: All Might - Rising The Animation"], "top_ids": ["11469", "14084", "42046"]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "進撃の巨人 Season3", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4898.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "我的英雄学院 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6923.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "火影忍者 疾風傳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12264.8, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "我的英雄学院 2", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 3254.7, "error": null, "top_titles": ["Evangelion: 2.0 You Can (Not) Advance", "Rebuild of Evangelion: 2.0 You Can (Not) Advance", "Evangelion 2.22", "Oreimo 2", "My Little Sister Can't Be This Cute 2", "Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2", "Chihayafuru 2", "Chihayafull 2"], "top_ids": ["3250", "7006", "7123"]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Naruto Shippuden", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3688.6, "error": null, "top_titles": ["Naruto: Shippuuden", "Naruto: Shippuuden Movie 3 - Hi no Ishi wo Tsugu Mono", "The Last: Naruto the Movie"], "top_ids": [1735, 6325, 16870]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "进击的巨人 第三季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6116.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "我的英雄学院 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8062.6, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "火影忍者疾風傳", "hit": false, "position": null, "kind": "", "n_returned": 6, "duration_ms": 7611.4, "error": null, "top_titles": ["Boruto: Naruto the Movie - Naruto ga Hokage ni Natta Hi", "The Day Naruto Became Hokage", "BORUTO -NARUTO THE MOVIE- ナルトが火影になった日", "Karakuri Kiden: Hiwou Senki", "Clockwork Fighters: Hiwou's War", "Hiwou's Windup Dolls Military Commentaries", "Eiyuu Banka Koushi-den", "Koshi-den"], "top_ids": [32365, 3935, 23615]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "我的英雄學院 2", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 11201.9, "error": null, "top_titles": ["Evangelion: 2.0 You Can (Not) Advance", "Rebuild of Evangelion: 2.0 You Can (Not) Advance", "Evangelion 2.22", "Oreimo 2", "My Little Sister Can't Be This Cute 2", "Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2", "Chihayafuru 2", "Chihayafull 2"], "top_ids": ["3250", "7006", "7123"]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "火影忍者疾风传", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3993.1, "error": null, "top_titles": ["Fanren Xiu Xian Zhuan: Mulan Zhi Zhan", "A Mortal's Journey 5th Season", "A Record of a Mortal's Journey to Immortality 5th Season"], "top_ids": [63240, 63240, 63240]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "나히아 2기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6089.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "進擊的巨人 第三季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 10377.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "en", "backend": "shikimori", "variant": "enhance_romaji_to_katakana", "query": "ナルト シップデン", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12179.2, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "火影忍者疾風傳", "hit": false, "position": null, "kind": "", "n_returned": 6, "duration_ms": 3731.3, "error": null, "top_titles": ["Boruto: Naruto the Movie - Naruto ga Hokage ni Natta Hi", "The Day Naruto Became Hokage", "BORUTO -NARUTO THE MOVIE- ナルトが火影になった日", "Karakuri Kiden: Hiwou Senki", "Clockwork Fighters: Hiwou's War", "Hiwou's Windup Dolls Military Commentaries", "Eiyuu Banka Koushi-den", "Koshi-den"], "top_ids": [32365, 3935, 23615]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "我的英雄学院 第二季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4082.7, "error": null, "top_titles": ["Quanzhi Gaoshou 2nd Season", "Quan Zhi Gao Shou Season 2", "Full-Time Expert Season 2", "Xian Wang de Richang Shenghuo 2nd Season", "Shiguang Dailiren 2", "Link Click 2nd Season", "LINK CLICK II"], "top_ids": ["41358", "43795", "45504"]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "naruto shippuden", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 1902.1, "error": null, "top_titles": ["Naruto: Shippuuden", "Naruto: Shippuuden Movie 3 - Hi no Ishi wo Tsugu Mono", "The Last: Naruto the Movie"], "top_ids": [1735, 6325, 16870]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "My Hero Academia Season 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3329.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "我的英雄學院 第二季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3588.6, "error": null, "top_titles": ["Quanzhi Gaoshou 2nd Season", "Quan Zhi Gao Shou Season 2", "Full-Time Expert Season 2", "Xian Wang de Richang Shenghuo 2nd Season", "Shiguang Dailiren 2", "Link Click 2nd Season", "LINK CLICK II"], "top_ids": ["41358", "43795", "45504"]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 2635.7, "error": null, "top_titles": ["Boku no Hero Academia 5th Season", "Boku no Hero Academia 3rd Season", "Boku no Hero Academia 2nd Season"], "top_ids": [41587, 36456, 33486]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "進擊的巨人 第三季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5538.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "火影忍者疾风传", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5292.3, "error": null, "top_titles": ["Fanren Xiu Xian Zhuan: Mulan Zhi Zhan", "A Mortal's Journey 5th Season", "A Record of a Mortal's Journey to Immortality 5th Season"], "top_ids": [63240, 63240, 63240]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "我的英雄学院 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2541.2, "error": null, "top_titles": ["Wo Shi Na Zha 2: Yingxiong Guilai", "Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou Part 2", "Mashin Eiyuuden Wataru 2"], "top_ids": [56795, 48418, 4807]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "进击的巨人 第三季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3216.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "我的英雄学院 第二季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3773.1, "error": null, "top_titles": ["Quanzhi Gaoshou 2nd Season", "Quan Zhi Gao Shou Season 2", "Full-Time Expert Season 2", "Xian Wang de Richang Shenghuo 2nd Season", "Shiguang Dailiren 2", "Link Click 2nd Season", "LINK CLICK II"], "top_ids": ["41358", "43795", "45504"]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "나루토 질풍전", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2344.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "진격의 거인 3기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2551.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "我的英雄學院 第二季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2582.9, "error": null, "top_titles": ["Quanzhi Gaoshou 2nd Season", "Quan Zhi Gao Shou Season 2", "Full-Time Expert Season 2", "Xian Wang de Richang Shenghuo 2nd Season", "Shiguang Dailiren 2", "Link Click 2nd Season", "LINK CLICK II"], "top_ids": ["41358", "43795", "45504"]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Naruto Shippuden", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3152.3, "error": null, "top_titles": ["Naruto: Shippuuden", "Naruto Hurricane Chronicles", "-ナルト- 疾風伝", "The Last: Naruto the Movie", "Naruto Movie 10: Naruto the Movie: The Last,Naruto: Shippuuden Movie 7 - The Last", "THE LAST NARUTO THE MOVIE", "Naruto: Shippuuden Movie 6 - Road to Ninja", "Naruto Movie 9"], "top_ids": [1735, 16870, 13667]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Attack on Titan Season 3", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 2570.4, "error": null, "top_titles": ["Shingeki no Kyojin Season 3", "Attack on Titan Season 3", "進撃の巨人 Season3", "Shingeki no Kyojin Season 3 Part 2", "Attack on Titan Season 3 Part 2", "進撃の巨人 Season3 Part.2", "Shingeki no Kyojin: Chimi Kyara Gekijou - Rivai-han", "「進撃の巨人」ちみキャラ劇場”新生リヴァイ班”"], "top_ids": [99147, 104578, 108942]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "나히아 2기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2591.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "我的英雄學院 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7170.9, "error": null, "top_titles": ["Wo Shi Na Zha 2: Yingxiong Guilai", "Mashin Eiyuuden Wataru 2", "Xi Bai Po 2: Yingxiong Wang Er Xiao"], "top_ids": [56795, 4807, 43901]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "My Hero Academia Season 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3810.7, "error": null, "top_titles": ["Boku no Hero Academia 2", "Boku no Hero Academia 2nd Season: Hero Note", "My Hero Academia 2: Episode 0", "Boku no Hero Academia 2nd Season: Episode 0", "Vigilante: Boku no Hero Academia ILLEGALS 2nd Season", "MHA Vigilantes 2", "BNHA Vigilantes 2"], "top_ids": ["12268", "13313", "50007"]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia season 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8452.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "進撃の巨人 Season3", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2977.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "我的英雄学院 第二季", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 6628.5, "error": null, "top_titles": ["Wo de Maoxian Shijie 2nd Season", "Chao Shen Xueyuan", "Wo Jiao MT 2nd Season"], "top_ids": [47265, 48751, 44520]} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "en", "backend": "jikan", "variant": "enhance_romaji_to_katakana", "query": "ナルト シップデン", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 6017.8, "error": null, "top_titles": ["Naruto", "NARUTO", "ナルト", "Naruto: Shippuuden", "Naruto Hurricane Chronicles", "-ナルト- 疾風伝", "Naruto: Shippuuden Movie 1", "Naruto Shippuden Movie"], "top_ids": [20, 1735, 2472]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan season 3", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 3693.5, "error": null, "top_titles": ["Shingeki no Kyojin Season 3", "Attack on Titan Season 3", "進撃の巨人 Season3", "Shingeki no Kyojin Season 3 Part 2", "Attack on Titan Season 3 Part 2", "進撃の巨人 Season3 Part.2", "Shingeki no Kyojin: Chimi Kyara Gekijou - Rivai-han", "「進撃の巨人」ちみキャラ劇場”新生リヴァイ班”"], "top_ids": [99147, 104578, 108942]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "我的英雄學院 第二季", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2037.8, "error": null, "top_titles": ["Wo de Maoxian Shijie 2nd Season", "Wo Jiao MT 2nd Season", "Gon de Hanta 2nd Season"], "top_ids": [47265, 44520, 55118]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "进击的巨人 第三季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3386.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 14, "mal_id": 1735, "popularity": 15, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "naruto shippuden", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2616.1, "error": null, "top_titles": ["Naruto: Shippuuden", "Naruto Hurricane Chronicles", "-ナルト- 疾風伝", "The Last: Naruto the Movie", "Naruto Movie 10: Naruto the Movie: The Last,Naruto: Shippuuden Movie 7 - The Last", "THE LAST NARUTO THE MOVIE", "Naruto: Shippuuden Movie 6 - Road to Ninja", "Naruto Movie 9"], "top_ids": [1735, 16870, 13667]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia season 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 5655.6, "error": null, "top_titles": ["Boku no Hero Academia 2", "Boku no Hero Academia 2nd Season: Hero Note", "My Hero Academia 2: Episode 0", "Boku no Hero Academia 2nd Season: Episode 0", "Vigilante: Boku no Hero Academia ILLEGALS 2nd Season", "MHA Vigilantes 2", "BNHA Vigilantes 2"], "top_ids": ["12268", "13313", "50007"]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "聲の形", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3685.9, "error": null, "top_titles": ["Koe no Katachi", "A Silent Voice", "聲の形", "Koe no Katachi Specials", "A Silent Voice Specials", "聲の形スペシャル"], "top_ids": [20954, 107764]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "我的英雄学院 第二季", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 3347.3, "error": null, "top_titles": ["Wo de Maoxian Shijie 2nd Season", "Chao Shen Xueyuan", "Wo Jiao MT 2nd Season"], "top_ids": [47265, 48751, 44520]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "進擊的巨人 第三季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2663.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "我的英雄學院 第二季", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 1908.7, "error": null, "top_titles": ["Wo de Maoxian Shijie 2nd Season", "Wo Jiao MT 2nd Season", "Gon de Hanta 2nd Season"], "top_ids": [47265, 44520, 55118]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "進撃の巨人 Season3", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2723.4, "error": null, "top_titles": ["Attack on Titan Season 2", "Attack on Titan Season 3", "Attack on Titan Season 3 Part 2"], "top_ids": ["8671", "13569", "41982"]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 4738.6, "error": null, "top_titles": ["Boku no Hero Academia", "僕のヒーローアカデミア", "My Hero Academia", "Boku no Hero Academia 2nd Season", "My Hero Academia Season 2", "Boku no Hero Academia 3rd Season", "My Hero Academia Season 3"], "top_ids": [31964, 33486, 36456]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "진격의 거인 3기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3149.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "나히아 2기", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2496.3, "error": null, "top_titles": ["Dudadakung 2nd Season", "Biklonz 2nd Season", "Athlon Tobot 2"], "top_ids": [48170, 59948, 52737]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "声之形", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 5584.7, "error": null, "top_titles": ["Koe no Katachi", "A Silent Voice", "聲の形"], "top_ids": [20954]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "我的英雄学院 2", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3243.4, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Attack on Titan Season 3", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4777.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "My Hero Academia Season 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3981.0, "error": null, "top_titles": ["Boku no Hero Academia 2nd Season", "Vigilante: Boku no Hero Academia Illegals 2nd Season", "Boku no Hero Academia the Movie 2: Heroes:Rising"], "top_ids": [33486, 61942, 39565]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "我的英雄學院 2", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3969.2, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "聲之形", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4747.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "我的英雄学院 第二季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4068.3, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "进击的巨人 第三季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12184.7, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia season 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4858.9, "error": null, "top_titles": ["Boku no Hero Academia 2nd Season", "Vigilante: Boku no Hero Academia Illegals 2nd Season", "Boku no Hero Academia the Movie 2: Heroes:Rising"], "top_ids": [33486, 61942, 39565]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "進擊的巨人 第三季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3379.2, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Ultra Romantic", "Kaguya-sama: Love is War Season 3", "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3", "Guomin Laogong Dai Huijia 3rd Season", "How to Steal 55 Kisses 3rd Season", "Bringing Back Home Mr. Perfect 3rd Season", "Xian Wang De Richang Shenghuo 3"], "top_ids": ["43691", "41003", "45524"]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan season 3", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4007.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "進撃の巨人 Season3", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2994.7, "error": null, "top_titles": ["Shingeki no Kyojin Season 3", "Shingeki no Kyojin Season 3 Part 2", "Shingeki no Kyojin: Ano Hi Kara"], "top_ids": [35760, 38524, 19285]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "聲之形", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 10147.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "進擊的巨人 第三季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3331.9, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Ultra Romantic", "Kaguya-sama: Love is War Season 3", "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3", "Guomin Laogong Dai Huijia 3rd Season", "How to Steal 55 Kisses 3rd Season", "Bringing Back Home Mr. Perfect 3rd Season", "Xian Wang De Richang Shenghuo 3"], "top_ids": ["43691", "41003", "45524"]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "聲の形", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3262.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "进击的巨人 第三季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2677.5, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Ultra Romantic", "Kaguya-sama: Love is War Season 3", "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3", "Guomin Laogong Dai Huijia 3rd Season", "How to Steal 55 Kisses 3rd Season", "Bringing Back Home Mr. Perfect 3rd Season", "Xian Wang De Richang Shenghuo 3"], "top_ids": ["43691", "41003", "45524"]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "진격의 거인 3기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3409.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "我的英雄學院 第二季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 13641.4, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "声之形", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 7546.9, "error": null, "top_titles": ["Koe no Katachi", "A Silent Voice", "聲の形"], "top_ids": [20954]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "声之形", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7657.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "電影 聲之形", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3235.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "我的英雄学院 第二季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3682.2, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "聲之形", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2888.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "进击的巨人 第三季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13175.5, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "电影 声之形", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2590.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "我的英雄學院 第二季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3586.6, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "進擊的巨人 第三季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2059.2, "error": null, "top_titles": ["Fei Ren Zai 3rd Season", "Mo Jing Lieren 3rd Season", "Gon de Hanta 3rd Season"], "top_ids": [61950, 33604, 55119]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "목소리의 형태", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2641.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "電影 聲之形", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3208.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "나히아 2기", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4735.6, "error": null, "top_titles": ["Athlon Tobot 2", "Athlon Tobot 2nd Season", "애슬론 또봇 2기", "Bubble Bubble Cook 2nd Season", "보글보글 쿡 2기", "Studio Vandal", "Dudadakung 2nd Season", "두다다쿵 2기"], "top_ids": [52737, 55078, 48170]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "進擊的巨人 第三季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4370.3, "error": null, "top_titles": ["Fei Ren Zai 3rd Season", "Mo Jing Lieren 3rd Season", "Gon de Hanta 3rd Season"], "top_ids": [61950, 33604, 55119]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "목소리의 형태", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3849.2, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Attack on Titan Season 3", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13252.3, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "进击的巨人 第三季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2310.1, "error": null, "top_titles": ["Fei Ren Zai 3rd Season", "Mo Jing Lieren 3rd Season", "Gon de Hanta 3rd Season"], "top_ids": [61950, 33604, 55119]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "A Silent Voice", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 8150.7, "error": null, "top_titles": ["Koe no Katachi", "A Silent Voice", "聲の形", "Koe no Katachi Specials", "A Silent Voice Specials", "聲の形スペシャル"], "top_ids": [20954, 107764]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "진격의 거인 3기", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 2755.1, "error": null, "top_titles": ["Dudadakung 3rd Season", "Biklonz 3rd Season", "Athlon Tobot 3"], "top_ids": [54128, 59949, 52738]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "My Hero Academia Season 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5337.8, "error": null, "top_titles": ["Boku no Hero Academia 2nd Season", "僕のヒーローアカデミア", "My Hero Academia Season 2", "Vigilante: Boku no Hero Academia Illegals 2nd Season", "ヴィジランテ -僕のヒーローアカデミア ILLEGALS- 第2期", "My Hero Academia: Vigilantes Season 2", "Boku no Hero Academia 3rd Season", "My Hero Academia Season 3"], "top_ids": [33486, 61942, 36456]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "A Silent Voice", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 10722.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan season 3", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 8332.5, "error": null, "top_titles": ["Attack on Titan Season 3", "Attack on Titan Season 3 Part 2", "Attack on Titan Season 3 Specials", "Shingeki no Kyojin: Chimi Chara Gekijou \"Tondeke! Shinsei Levi Han\""], "top_ids": ["13569", "41982", "42247"]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "a silent voice", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 6121.8, "error": null, "top_titles": ["Koe no Katachi", "A Silent Voice", "聲の形", "Koe no Katachi Specials", "A Silent Voice Specials", "聲の形スペシャル"], "top_ids": [20954, 107764]} +{"sample_index": 15, "mal_id": 33486, "popularity": 16, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia season 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3884.3, "error": null, "top_titles": ["Boku no Hero Academia 2nd Season", "僕のヒーローアカデミア", "My Hero Academia Season 2", "Vigilante: Boku no Hero Academia Illegals 2nd Season", "ヴィジランテ -僕のヒーローアカデミア ILLEGALS- 第2期", "My Hero Academia: Vigilantes Season 2", "Boku no Hero Academia 3rd Season", "My Hero Academia Season 3"], "top_ids": [33486, 61942, 36456]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Attack on Titan Season 3", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 8949.9, "error": null, "top_titles": ["Shingeki no Kyojin Season 3", "Shingeki no Kyojin Season 3 Part 2", "Sword Art Online: Alicization - War of Underworld 2nd Season"], "top_ids": [35760, 38524, 40540]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "進撃の巨人 Season3 Part.2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2472.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "進撃の巨人 Season3", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4456.6, "error": null, "top_titles": ["Shingeki no Kyojin Season 3", "進撃の巨人 Season3", "Attack on Titan Season 3", "Shingeki no Kyojin Season 3 Part 2", "進撃の巨人 Season3 Part.2", "Attack on Titan Season 3 Part 2", "Shingeki no Kyojin: The Final Season", "Shingeki no Kyojin Season 4"], "top_ids": [35760, 38524, 40028]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "聲の形", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 5530.7, "error": null, "top_titles": ["Koe no Katachi", "The Shape of Voice", "A Silent Voice: The Movie"], "top_ids": ["10028"]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan season 3", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2212.0, "error": null, "top_titles": ["Shingeki no Kyojin Season 3", "Shingeki no Kyojin Season 3 Part 2", "Sword Art Online: Alicization - War of Underworld 2nd Season"], "top_ids": [35760, 38524, 40540]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "声之形", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2499.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "进击的巨人 第三季 Part.2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5664.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "聲の形", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3175.3, "error": null, "top_titles": ["Koe no Katachi", "Koe no Katachi Specials", "Happiness Charge Precure! Movie: Ningyou no Kuni no Ballerina"], "top_ids": [28851, 35566, 23083]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "a silent voice", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3410.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "声之形", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3536.7, "error": null, "top_titles": ["Kitsune no Koe", "Bianxing Lianmeng: Chao Bian Zhanshen", "Xin Qi Bao Long Zhan Che 6: Mofang Bianxing"], "top_ids": [37106, 60904, 60880]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "進撃の巨人 Season3 Part.2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3831.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "聲之形", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2368.6, "error": null, "top_titles": ["Koe no Katachi", "Koe no Katachi Specials", "Bianxing Lianmeng: Chao Bian Zhanshen"], "top_ids": [28851, 35566, 60904]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "聲之形", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9874.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "进击的巨人 第三季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13184.0, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "进击的巨人 第三季 Part.2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5286.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "進擊的巨人 第三季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2441.4, "error": null, "top_titles": ["Cang Yuan Tu 3", "Cang Yuan Tu 3rd Season", "The Demon Hunter 3rd Season", "Zhen Dao Ge 3rd Season", "枕刀歌3:孤城闭雪", "Zhen Dao Ge 3: Gucheng Bi Xue"], "top_ids": [62651, 62651, 62444]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "進擊的巨人 第三季 Part.2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12468.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "聲之形", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5784.1, "error": null, "top_titles": ["Koe no Katachi", "Koe no Katachi Specials", "Bianxing Lianmeng: Chao Bian Zhanshen"], "top_ids": [28851, 35566, 60904]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "進擊的巨人 第三季 Part.2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3141.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "声之形", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2930.3, "error": null, "top_titles": ["Kitsune no Koe", "Bianxing Lianmeng: Chao Bian Zhanshen", "Xin Qi Bao Long Zhan Che 6: Mofang Bianxing"], "top_ids": [37106, 60904, 60880]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "進擊的巨人 第三季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3653.9, "error": null, "top_titles": ["Cang Yuan Tu 3", "Cang Yuan Tu 3rd Season", "The Demon Hunter 3rd Season", "Zhen Dao Ge 3rd Season", "枕刀歌3:孤城闭雪", "Zhen Dao Ge 3: Gucheng Bi Xue"], "top_ids": [62651, 62651, 62444]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "進擊的巨人 第三季 Part.2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5054.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "電影 聲之形", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2571.5, "error": null, "top_titles": ["Tegong Huan Ying: Conglin Mi Ying", "Koe no Katachi", "Koe no Katachi Specials"], "top_ids": [47846, 28851, 35566]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "聲之形", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9894.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "진격의 거인 3기 Part 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5366.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "进击的巨人 第三季", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 4482.4, "error": null, "top_titles": ["Jinji de Ji Jia: Sheng Jie Fei Tuo", "进击的机甲之圣戒飞陀", "Mecha", "Cang Yuan Tu 3", "Cang Yuan Tu 3rd Season", "The Demon Hunter 3rd Season"], "top_ids": [47063, 62651, 62651]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "声之形", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3336.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "진격의 거인 3기", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3180.4, "error": null, "top_titles": ["Athlon Tobot 3", "Athlon Tobot 3rd Season", "애슬론 또봇 3기", "Pororo-wa Noraehaeyo 3rd Season", "뽀로로와 노래해요 3기", "Sing-A-Long with Pororo 3rd Season", "Dudadakung 3rd Season", "두다다쿵 3기"], "top_ids": [52738, 61916, 54128]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Attack on Titan Season 3 Part 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4103.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "电影 声之形", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 8913.9, "error": null, "top_titles": ["Sai Er Hao Movie 4: Sheng Mo Zhi Zhan", "Xiao Zhu Banna Da Dianying: Mengxiang Da \"Mao\" Xian", "Duo Bao Xingyun Xing Da Dianying: Jin Gu Bang Chuanqi"], "top_ids": [44156, 44929, 44814]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "電影 聲之形", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 4559.3, "error": null, "top_titles": ["Amakage", "Amakage music clip"], "top_ids": ["12059"]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Attack on Titan Season 3", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4238.0, "error": null, "top_titles": ["Shingeki no Kyojin Season 3", "進撃の巨人 Season3", "Attack on Titan Season 3", "Shingeki no Kyojin Season 3 Part 2", "進撃の巨人 Season3 Part.2", "Attack on Titan Season 3 Part 2", "Shingeki no Kyojin Season 3 Specials", "Shingeki no Kyojin: Chimi Chara Gekijou \"Tondeke! Shinsei Levi Han\""], "top_ids": [35760, 38524, 39477]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "목소리의 형태", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2788.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "电影 声之形", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2479.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "进击的巨人 第三季 Part.2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13269.3, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "목소리의 형태", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2828.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "진격의 거인 3기 Part 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2591.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "A Silent Voice", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4080.9, "error": null, "top_titles": ["Koe no Katachi", "Koe no Katachi Specials", "Sore ga Seiyuu!"], "top_ids": [28851, 35566, 29163]} +{"sample_index": 16, "mal_id": 35760, "popularity": 18, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan season 3", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2864.5, "error": null, "top_titles": ["Shingeki no Kyojin Season 3", "進撃の巨人 Season3", "Attack on Titan Season 3", "Shingeki no Kyojin Season 3 Part 2", "進撃の巨人 Season3 Part.2", "Attack on Titan Season 3 Part 2", "Shingeki no Kyojin Season 3 Specials", "Shingeki no Kyojin: Chimi Chara Gekijou \"Tondeke! Shinsei Levi Han\""], "top_ids": [35760, 38524, 39477]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "A Silent Voice", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2339.7, "error": null, "top_titles": ["Koe no Katachi", "The Shape of Voice", "A Silent Voice: The Movie", "Koi wo Shita no wa", "Koe no Katachi Specials"], "top_ids": ["10028", "41567"]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Attack on Titan Season 3 Part 2", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2634.7, "error": null, "top_titles": ["Shingeki no Kyojin Season 3 Part 2", "Attack on Titan Season 3 Part 2", "進撃の巨人 Season3 Part.2", "Shingeki no Kyojin: The Final Season - Kanketsu-hen Kouhen", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2", "進撃の巨人 The Final Season完結編 後編"], "top_ids": [104578, 162314]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "聲の形", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3556.6, "error": null, "top_titles": ["Koe no Katachi", "The Shape of Voice", "聲の形", "Koe no Katachi Specials", "Koi wo Shita no wa", "Speed of Youth", "Steins;Gate 0: Kesshou Takei no Valentine - Bittersweet Intermedio", "Steins,Gate Zero"], "top_ids": [28851, 35566, 37492]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan season 3 part 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9377.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "声之形", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 3222.8, "error": null, "top_titles": ["Katachi", "形", "Pain Give Form", "Koe no Katachi", "The Shape of Voice", "聲の形", "Mikakunin de Shinkoukei", "未確認で進行形"], "top_ids": [61841, 28851, 20541]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "a silent voice", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5556.3, "error": null, "top_titles": ["Koe no Katachi", "Koe no Katachi Specials", "Sore ga Seiyuu!"], "top_ids": [28851, 35566, 29163]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "聲之形", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 2679.3, "error": null, "top_titles": ["Katachi", "形", "Pain Give Form", "Koe no Katachi", "The Shape of Voice", "聲の形", "Mikakunin de Shinkoukei", "未確認で進行形"], "top_ids": [61841, 28851, 20541]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ノーゲーム・ノーライフ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7515.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "聲之形", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 2695.4, "error": null, "top_titles": ["Katachi", "形", "Pain Give Form", "Koe no Katachi", "The Shape of Voice", "聲の形", "Mikakunin de Shinkoukei", "未確認で進行形"], "top_ids": [61841, 28851, 20541]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "進撃の巨人 Season3 Part.2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4537.5, "error": null, "top_titles": ["Shingeki no Kyojin Season 3 Part 2", "Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin Season 3"], "top_ids": [38524, 48583, 35760]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan season 3 part 2", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3304.6, "error": null, "top_titles": ["Shingeki no Kyojin Season 3 Part 2", "Attack on Titan Season 3 Part 2", "進撃の巨人 Season3 Part.2", "Shingeki no Kyojin: The Final Season - Kanketsu-hen Kouhen", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2", "進撃の巨人 The Final Season完結編 後編"], "top_ids": [104578, 162314]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "声之形", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 3301.7, "error": null, "top_titles": ["Katachi", "形", "Pain Give Form", "Koe no Katachi", "The Shape of Voice", "聲の形", "Mikakunin de Shinkoukei", "未確認で進行形"], "top_ids": [61841, 28851, 20541]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ノーゲーム・ノーライフ", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 1833.3, "error": null, "top_titles": ["No Game No Life", "No Game, No Life", "ノーゲーム・ノーライフ", "No Game No Life Zero", "No Game, No Life Zero", "ノーゲーム・ノーライフ ゼロ", "No Game No Life Specials", "ノーゲーム・ノーライフ ミニ"], "top_ids": [19815, 21875, 20769]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "进击的巨人 第三季 Part.2", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 3789.8, "error": null, "top_titles": ["Fei Ren Zai 3rd Season Part 2", "Fei Ren Zai 2nd Season", "San Zhi Tuzi 2nd Season"], "top_ids": [63788, 52523, 47519]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "のーげーむ・のーらいふ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3543.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "a silent voice", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 5783.9, "error": null, "top_titles": ["Koe no Katachi", "The Shape of Voice", "A Silent Voice: The Movie", "Koi wo Shita no wa", "Koe no Katachi Specials"], "top_ids": ["10028", "41567"]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "進擊的巨人 第三季 Part.2", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3235.3, "error": null, "top_titles": ["Fei Ren Zai 3rd Season Part 2", "Shingeki no Kyojin Season 3 Part 2", "Shingeki no Kyojin: The Final Season Part 2"], "top_ids": [63788, 38524, 48583]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "電影 聲之形", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 5205.3, "error": null, "top_titles": ["Katachi", "形", "Pain Give Form", "Koe no Katachi", "The Shape of Voice", "聲の形", "Mikakunin de Shinkoukei", "未確認で進行形"], "top_ids": [61841, 28851, 20541]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "游戏人生", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 1816.0, "error": null, "top_titles": ["No Game No Life", "No Game, No Life", "ノーゲーム・ノーライフ", "No Game No Life Zero", "No Game, No Life Zero", "ノーゲーム・ノーライフ ゼロ"], "top_ids": [19815, 21875]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "進擊的巨人 第三季 Part.2", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2281.0, "error": null, "top_titles": ["Fei Ren Zai 3rd Season Part 2", "Shingeki no Kyojin Season 3 Part 2", "Shingeki no Kyojin: The Final Season Part 2"], "top_ids": [63788, 38524, 48583]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "進撃の巨人 Season3 Part.2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3637.8, "error": null, "top_titles": ["Attack on Titan Season 3 Part 2", "Attack on Titan: The Final Season Part 2", "Shingeki no Kyojin Season 4 Part 2", "Attack on Titan Season 4 Part 2", "Attack on Titan: The Final Season - Final Chapters Part 2", "Attack on Titan Season 4 Part 4, Attack on Titan Season 4 - Final Edition (Part 2), Attack on Titan: The Final Season - Final Edition (Part 2)", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2"], "top_ids": ["41982", "44240", "47132"]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "遊戲人生", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2613.1, "error": null, "top_titles": ["No Game No Life", "No Game, No Life", "ノーゲーム・ノーライフ"], "top_ids": [19815]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "进击的巨人 第三季 Part.2", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 2220.1, "error": null, "top_titles": ["Fei Ren Zai 3rd Season Part 2", "Fei Ren Zai 2nd Season", "San Zhi Tuzi 2nd Season"], "top_ids": [63788, 52523, 47519]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "のーげーむ・のーらいふ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12281.8, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "NO GAME NO LIFE 遊戲人生", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3437.3, "error": null, "top_titles": ["No Game No Life", "No Game, No Life", "ノーゲーム・ノーライフ"], "top_ids": [19815]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "진격의 거인 3기 Part 2", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 2893.1, "error": null, "top_titles": ["Hataraku Maou-sama!! 2nd Season", "Hoozuki no Reitetsu 2nd Season: Sono Ni", "Tiger & Bunny 2 Part 2"], "top_ids": [53200, 37029, 52291]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "电影 声之形", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 6888.5, "error": null, "top_titles": ["Katachi", "形", "Pain Give Form", "Koe no Katachi", "The Shape of Voice", "聲の形", "Mikakunin de Shinkoukei", "未確認で進行形"], "top_ids": [61841, 28851, 20541]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "游戏人生", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4504.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "목소리의 형태", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2700.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "NO GAME NO LIFE 游戏人生", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 4393.5, "error": null, "top_titles": ["No Game No Life", "No Game, No Life", "ノーゲーム・ノーライフ"], "top_ids": [19815]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Attack on Titan Season 3 Part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4824.2, "error": null, "top_titles": ["Shingeki no Kyojin Season 3 Part 2", "One Punch Man 3 Part 2", "Shingeki no Kyojin Season 3"], "top_ids": [38524, 63193, 35760]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "NO GAME NO LIFE 遊戲人生", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4224.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "遊戲人生", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3455.6, "error": null, "top_titles": ["No Game No Life", "No Game, No Life", "ノーゲーム・ノーライフ"], "top_ids": [19815]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan season 3 part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2788.7, "error": null, "top_titles": ["Shingeki no Kyojin Season 3 Part 2", "One Punch Man 3 Part 2", "Shingeki no Kyojin Season 3"], "top_ids": [38524, 63193, 35760]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "A Silent Voice", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6981.7, "error": null, "top_titles": ["Koe no Katachi", "The Shape of Voice", "聲の形", "Koe no Katachi Specials", "Koi wo Shita no wa", "Speed of Youth", "ef: A Tale of Memories.", "ef - a tale of memories."], "top_ids": [28851, 35566, 2924]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "遊戲人生", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6185.4, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ノーゲーム・ノーライフ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2459.1, "error": null, "top_titles": ["No Game No Life", "No Game No Life Specials", "No Game No Life: Zero"], "top_ids": [19815, 24991, 33674]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "进击的巨人 第三季 Part.2", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 3, "duration_ms": 19179.7, "error": null, "top_titles": ["Fei Ren Zai 2 Part 3", "Non-human 2 Part 3", "非人哉 小满篇", "Fei Ren Zai 2 Part 2", "Non-human 2: Year of the Rabbit War", "非人哉 秋分篇", "Jintian Kaishi Shanyao Dengchang", "Start to be a Star Today 2"], "top_ids": ["50509", "50508", "48106"]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "游戏人生", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 7924.2, "error": null, "top_titles": ["No Game No Life", "No Game, No Life", "ノーゲーム・ノーライフ", "No Game No Life Zero", "No Game, No Life Zero", "ノーゲーム・ノーライフ ゼロ"], "top_ids": [19815, 21875]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "のーげーむ・のーらいふ", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3272.0, "error": null, "top_titles": ["Superflat Monogram", "Wooser no Sono Higurashi: Ken to Pants to Wooser to", "Majo no Furo Life"], "top_ids": [2290, 16738, 59463]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "進擊的巨人 第三季 Part.2", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 3, "duration_ms": 2784.3, "error": null, "top_titles": ["Fei Ren Zai 2 Part 3", "Non-human 2 Part 3", "非人哉 小满篇", "Fei Ren Zai 2 Part 2", "Non-human 2: Year of the Rabbit War", "非人哉 秋分篇", "Jintian Kaishi Shanyao Dengchang", "Start to be a Star Today 2"], "top_ids": ["50509", "50508", "48106"]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "노 게임 노 라이프", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6212.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "游戏人生", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3388.5, "error": null, "top_titles": ["Jinsei", "Sayounara Ryuusei, Konnichiwa Jinsei", "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!"], "top_ids": [23121, 58445, 39523]} +{"sample_index": 17, "mal_id": 28851, "popularity": 19, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "a silent voice", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3907.4, "error": null, "top_titles": ["Koe no Katachi", "The Shape of Voice", "聲の形", "Koe no Katachi Specials", "Koi wo Shita no wa", "Speed of Youth", "ef: A Tale of Memories.", "ef - a tale of memories."], "top_ids": [28851, 35566, 2924]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "노 게임 노 라이프", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4548.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "遊戲人生", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4029.8, "error": null, "top_titles": ["Jinsei", "Sayounara Ryuusei, Konnichiwa Jinsei", "Okusama ga Seitokaichou! Seitokaichou to Ofuro Asobi"], "top_ids": [23121, 58445, 31980]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "進擊的巨人 第三季 Part.2", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 3, "duration_ms": 5010.5, "error": null, "top_titles": ["Fei Ren Zai 2 Part 3", "Non-human 2 Part 3", "非人哉 小满篇", "Fei Ren Zai 2 Part 2", "Non-human 2: Year of the Rabbit War", "非人哉 秋分篇", "Jintian Kaishi Shanyao Dengchang", "Start to be a Star Today 2"], "top_ids": ["50509", "50508", "48106"]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "進撃の巨人 Season3 Part.2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4281.1, "error": null, "top_titles": ["Shingeki no Kyojin Season 3 Part 2", "進撃の巨人 Season3 Part.2", "Attack on Titan Season 3 Part 2", "Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin Season 4", "Attack on Titan Season 4", "Shingeki no Kyojin: The Final Season - Kanketsu-hen", "Shingeki no Kyojin: The Final Season Part 3"], "top_ids": [38524, 48583, 51535]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "NO GAME NO LIFE 遊戲人生", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2321.4, "error": null, "top_titles": ["No Game No Life", "Tennis no Oujisama Movie 1: Futari no Samurai - The First Game", "No Game No Life Specials"], "top_ids": [19815, 815, 24991]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "进击的巨人 第三季 Part.2", "hit": true, "position": 5, "kind": "id", "n_returned": 10, "duration_ms": 2255.5, "error": null, "top_titles": ["Fei Ren Zai 3rd Season Part 2", "Non-human 3rd Season Part 2", "Fei Ren Zai 3 Part 2", "Jian Wang 3: Xia Gan Yi Dan Shen Jianxin 3rd Season Part 2", "JX3: Chivalrous Hero Shen Jianxin 3rd Season Part 2", "剑网3·侠肝义胆沈剑心 第三季 下部", "Jinji de Ji Jia: Sheng Jie Fei Tuo", "进击的机甲之圣戒飞陀"], "top_ids": [63788, 53206, 47063]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "No Game, No Life", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 6340.6, "error": null, "top_titles": ["No Game No Life", "No Game, No Life", "ノーゲーム・ノーライフ", "No Game No Life Zero", "No Game, No Life Zero", "ノーゲーム・ノーライフ ゼロ", "No Game No Life Specials", "ノーゲーム・ノーライフ ミニ"], "top_ids": [19815, 21875, 20769]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "进击的巨人 第三季 Part.2", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 3, "duration_ms": 3455.2, "error": null, "top_titles": ["Fei Ren Zai 2 Part 3", "Non-human 2 Part 3", "非人哉 小满篇", "Fei Ren Zai 2 Part 2", "Non-human 2: Year of the Rabbit War", "非人哉 秋分篇", "Jintian Kaishi Shanyao Dengchang", "Start to be a Star Today 2"], "top_ids": ["50509", "50508", "48106"]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "NO GAME NO LIFE 游戏人生", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3547.7, "error": null, "top_titles": ["No Game No Life", "Tennis no Oujisama Movie 1: Futari no Samurai - The First Game", "No Game No Life Specials"], "top_ids": [19815, 815, 24991]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "進擊的巨人 第三季 Part.2", "hit": true, "position": 4, "kind": "id", "n_returned": 10, "duration_ms": 3829.5, "error": null, "top_titles": ["Fei Ren Zai 3rd Season Part 2", "Non-human 3rd Season Part 2", "Fei Ren Zai 3 Part 2", "Jian Wang 3: Xia Gan Yi Dan Shen Jianxin 3rd Season Part 2", "JX3: Chivalrous Hero Shen Jianxin 3rd Season Part 2", "剑网3·侠肝义胆沈剑心 第三季 下部", "Ling Long: Incarnation Part 2", "Ling Cage: Incarnation Part 2"], "top_ids": [63788, 53206, 42290]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "No Game, No Life", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 2, "duration_ms": 11445.9, "error": null, "top_titles": ["No Game, No Life Zero", "Atsuko Ishizuka", "Jukki Hanada", "No Game, No Life"], "top_ids": ["19405", "15784"]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "no game no life", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2628.5, "error": null, "top_titles": ["No Game No Life", "No Game, No Life", "ノーゲーム・ノーライフ", "No Game No Life Zero", "No Game, No Life Zero", "ノーゲーム・ノーライフ ゼロ", "No Game No Life Specials", "ノーゲーム・ノーライフ ミニ"], "top_ids": [19815, 21875, 20769]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "進擊的巨人 第三季 Part.2", "hit": true, "position": 4, "kind": "id", "n_returned": 10, "duration_ms": 2841.2, "error": null, "top_titles": ["Fei Ren Zai 3rd Season Part 2", "Non-human 3rd Season Part 2", "Fei Ren Zai 3 Part 2", "Jian Wang 3: Xia Gan Yi Dan Shen Jianxin 3rd Season Part 2", "JX3: Chivalrous Hero Shen Jianxin 3rd Season Part 2", "剑网3·侠肝义胆沈剑心 第三季 下部", "Ling Long: Incarnation Part 2", "Ling Cage: Incarnation Part 2"], "top_ids": [63788, 53206, 42290]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "コードギアス 反逆のルルーシュ", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2444.5, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch", "Code Geass: Lelouch of the Rebellion", "コードギアス 反逆のルルーシュ", "Code Geass: Hangyaku no Lelouch R2", "Code Geass: Lelouch of the Rebellion R2", "コードギアス 反逆のルルーシュ R2", "Code Geass: Hangyaku no Lelouch II - Handou", "Code Geass: Lelouch of the Rebellion II - Transgression"], "top_ids": [1575, 2904, 101812]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "进击的巨人 第三季 Part.2", "hit": true, "position": 5, "kind": "id", "n_returned": 10, "duration_ms": 5198.0, "error": null, "top_titles": ["Fei Ren Zai 3rd Season Part 2", "Non-human 3rd Season Part 2", "Fei Ren Zai 3 Part 2", "Jian Wang 3: Xia Gan Yi Dan Shen Jianxin 3rd Season Part 2", "JX3: Chivalrous Hero Shen Jianxin 3rd Season Part 2", "剑网3·侠肝义胆沈剑心 第三季 下部", "Jinji de Ji Jia: Sheng Jie Fei Tuo", "进击的机甲之圣戒飞陀"], "top_ids": [63788, 53206, 47063]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "反叛的魯路修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3638.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "진격의 거인 3기 Part 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12272.7, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "遊戲人生", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12183.4, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "진격의 거인 3기 Part 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4005.2, "error": null, "top_titles": ["Shingeki no Kyojin Season 3 Part 2", "進撃の巨人 Season3 Part.2", "Attack on Titan Season 3 Part 2", "Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin Season 4", "Attack on Titan Season 4", "Kengan Ashura Part 2", "ケンガンアシュラ Part 2"], "top_ids": [38524, 48583, 40269]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Attack on Titan Season 3 Part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3998.6, "error": null, "top_titles": ["Attack on Titan Season 3 Part 2"], "top_ids": ["41982"]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "游戏人生", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2930.1, "error": null, "top_titles": ["Jinsei", "Sayounara Ryuusei, Konnichiwa Jinsei", "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!"], "top_ids": [23121, 58445, 39523]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "反叛的鲁路修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5601.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "no game no life", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2287.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "反叛的魯路修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2701.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Attack on Titan Season 3 Part 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5452.4, "error": null, "top_titles": ["Shingeki no Kyojin Season 3 Part 2", "進撃の巨人 Season3 Part.2", "Attack on Titan Season 3 Part 2", "Shingeki no Kyojin: The Final Season - Kanketsu-hen", "Shingeki no Kyojin: The Final Season Part 3", "Shingeki no Kyojin Season 4", "Shingeki no Kyojin Season 3", "進撃の巨人 Season3"], "top_ids": [38524, 51535, 35760]} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan season 3 part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2682.1, "error": null, "top_titles": ["Attack on Titan Season 3 Part 2"], "top_ids": ["41982"]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "コードギアス 反逆のルルーシュ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4299.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 18, "mal_id": 38524, "popularity": 20, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan season 3 part 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2832.5, "error": null, "top_titles": ["Shingeki no Kyojin Season 3 Part 2", "進撃の巨人 Season3 Part.2", "Attack on Titan Season 3 Part 2", "Shingeki no Kyojin: The Final Season - Kanketsu-hen", "Shingeki no Kyojin: The Final Season Part 3", "Shingeki no Kyojin Season 4", "Shingeki no Kyojin Season 3", "進撃の巨人 Season3"], "top_ids": [38524, 51535, 35760]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "反叛的魯路修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4859.9, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ノーゲーム・ノーライフ", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2926.7, "error": null, "top_titles": ["No Game No Life", "NGNL", "ノーゲーム・ノーライフ", "No Game No Life: Zero", "NGNL Zero", "NGNL the Movie", "No Game No Life Specials", "NGNL Specials"], "top_ids": [19815, 33674, 24991]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ノーゲーム・ノーライフ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 7864.6, "error": null, "top_titles": ["No Game No Life", "NGNL", "No Game No Life: Zero", "No Game No Life Movie", "No Game, No Life Zero", "No Game No Life Specials", "NGNL Specials"], "top_ids": ["7880", "12325", "8534"]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "노 게임 노 라이프", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12271.4, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "反叛的魯路修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3324.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "反叛的鲁路修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12166.9, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "のーげーむ・のーらいふ", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3961.2, "error": null, "top_titles": ["Hi Fu Mii Yoru: Watage no Koto", "Hifumii Yoru: Watage no Koto", "ひぃふぅみぃ夜 ーわたげのことー", "Wooser no Sono Higurashi", "Project Wooser", "うーさーのその日暮らし", "Wooser no Sono Higurashi: Kakusei-hen", "Wooser no Sono Higurashi Second Season"], "top_ids": [57494, 15313, 20267]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "No Game, No Life", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4425.6, "error": null, "top_titles": ["No Game No Life", "Tennis no Oujisama Movie 1: Futari no Samurai - The First Game", "No Game No Life Specials"], "top_ids": [19815, 815, 24991]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "のーげーむ・のーらいふ", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 5666.6, "error": null, "top_titles": ["Wooser no Sono Higurashi", "Project Wooser", "Wooser no Sono Higurashi: Mugen-hen", "Wooser no Sono Higurashi Third Season", "Wooser no Sono Higurashi 3", "Wooser no Sono Higurashi: Kakusei-hen", "Wooser no Sono Higurashi Second Season", "Wooser no Sono Higurashi 2"], "top_ids": ["7238", "10138", "7979"]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "游戏人生", "hit": true, "position": 7, "kind": "title_substring", "n_returned": 10, "duration_ms": 3167.4, "error": null, "top_titles": ["Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta 2nd Season", "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~ 第2期", "I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too Season 2", "Boukensha License wo Hakudatsu sareta Ossan dakedo, Manamusume ga Dekita node Nonbiri Jinsei wo Ouka suru", "I Lost My Adventurer's License", "but It's Fine Because I Have an Adorable Daughter Now"], "top_ids": [63822, 63256, 63256]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "코드 기아스 반역의 를르슈", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4353.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "游戏人生", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2632.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Code Geass: Lelouch of the Rebellion", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 1756.7, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch", "Code Geass: Lelouch of the Rebellion", "コードギアス 反逆のルルーシュ", "Code Geass: Hangyaku no Lelouch R2", "Code Geass: Lelouch of the Rebellion R2", "コードギアス 反逆のルルーシュ R2", "Code Geass: Hangyaku no Lelouch I - Koudou", "Code Geass: Lelouch of the Rebellion I - Initiation"], "top_ids": [1575, 2904, 101811]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "코드 기아스 반역의 를르슈", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8556.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "遊戲人生", "hit": true, "position": 7, "kind": "title_substring", "n_returned": 10, "duration_ms": 3988.4, "error": null, "top_titles": ["Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta 2nd Season", "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~ 第2期", "I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too Season 2", "Boukensha License wo Hakudatsu sareta Ossan dakedo, Manamusume ga Dekita node Nonbiri Jinsei wo Ouka suru", "I Lost My Adventurer's License", "but It's Fine Because I Have an Adorable Daughter Now"], "top_ids": [63822, 63256, 63256]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "no game no life", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4125.9, "error": null, "top_titles": ["No Game No Life", "Tennis no Oujisama Movie 1: Futari no Samurai - The First Game", "No Game No Life Specials"], "top_ids": [19815, 815, 24991]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "code geass lelouch of the rebellion", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 2508.2, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch", "Code Geass: Lelouch of the Rebellion", "コードギアス 反逆のルルーシュ", "Code Geass: Hangyaku no Lelouch R2", "Code Geass: Lelouch of the Rebellion R2", "コードギアス 反逆のルルーシュ R2", "Code Geass: Hangyaku no Lelouch I - Koudou", "Code Geass: Lelouch of the Rebellion I - Initiation"], "top_ids": [1575, 2904, 101811]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "遊戲人生", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6252.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "コードギアス 反逆のルルーシュ", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2978.3, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch Recaps", "Code Geass: Hangyaku no Lelouch", "Code Geass: Hangyaku no Lelouch Picture Drama - Kiseki no Anniversary"], "top_ids": [2124, 1575, 40334]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "NO GAME NO LIFE 遊戲人生", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3622.9, "error": null, "top_titles": ["No Game No Life", "NGNL", "ノーゲーム・ノーライフ", "No Game No Life: Zero", "NGNL Zero", "NGNL the Movie", "No Game No Life Specials", "NGNL Specials"], "top_ids": [19815, 33674, 24991]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "反叛的魯路修", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 10, "duration_ms": 2860.2, "error": null, "top_titles": ["Wo, Xiu Xianjie De Gongdi", "Code Geass: Hangyaku no Lelouch II - Handou", "Congming de Yixiu Zhi Fan Dou Gongzhu"], "top_ids": [60794, 34439, 30247]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "Re:ゼロから始める異世界生活", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 4836.2, "error": null, "top_titles": ["Re:Zero kara Hajimeru Isekai Seikatsu", "Re:ZERO -Starting Life in Another World-", "Re:ゼロから始める異世界生活", "Re:Zero kara Hajimeru Isekai Seikatsu OVAs", "Re:ZERO -Starting Life in Another World- OVAs", "Re:ゼロから始める異世界生活 OVAs", "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", "Re:ZERO -Starting Life in Another World- Season 3"], "top_ids": [21355, 100049, 163134]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "NO GAME NO LIFE 遊戲人生", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3819.2, "error": null, "top_titles": ["No Game No Life", "NGNL", "No Game No Life: Zero", "No Game No Life Movie", "No Game, No Life Zero", "No Game No Life Specials", "NGNL Specials"], "top_ids": ["7880", "12325", "8534"]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "NO GAME NO LIFE 游戏人生", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3949.2, "error": null, "top_titles": ["No Game No Life", "NGNL", "ノーゲーム・ノーライフ", "No Game No Life: Zero", "NGNL Zero", "NGNL the Movie", "No Game No Life Specials", "NGNL Specials"], "top_ids": [19815, 33674, 24991]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "反叛的鲁路修", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 10, "duration_ms": 2504.2, "error": null, "top_titles": ["Wo, Xiu Xianjie De Gongdi", "Code Geass: Hangyaku no Lelouch II - Handou", "Congming de Yixiu Zhi Fan Dou Gongzhu"], "top_ids": [60794, 34439, 30247]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "反叛的魯路修", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 10, "duration_ms": 1711.4, "error": null, "top_titles": ["Wo, Xiu Xianjie De Gongdi", "Code Geass: Hangyaku no Lelouch II - Handou", "Congming de Yixiu Zhi Fan Dou Gongzhu"], "top_ids": [60794, 34439, 30247]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "遊戲人生", "hit": true, "position": 7, "kind": "title_substring", "n_returned": 10, "duration_ms": 3498.9, "error": null, "top_titles": ["Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta 2nd Season", "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~ 第2期", "I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too Season 2", "Boukensha License wo Hakudatsu sareta Ossan dakedo, Manamusume ga Dekita node Nonbiri Jinsei wo Ouka suru", "I Lost My Adventurer's License", "but It's Fine Because I Have an Adorable Daughter Now"], "top_ids": [63822, 63256, 63256]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "NO GAME NO LIFE 游戏人生", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4710.6, "error": null, "top_titles": ["No Game No Life", "NGNL", "No Game No Life: Zero", "No Game No Life Movie", "No Game, No Life Zero", "No Game No Life Specials", "NGNL Specials"], "top_ids": ["7880", "12325", "8534"]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Code Geass: Lelouch of the Rebellion", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 15293.6, "error": null, "top_titles": ["Code Geass: Lelouch of the Rebellion", "Gorō Taniguchi", "Go Sakamoto", "Code Geass: Lelouch of the Rebellion R2 Special Edition 'Zero Requiem'", "Ichirō Ōkōchi", "Code Geass: Lelouch of the Rebellion Special Edition 'Black Rebellion'"], "top_ids": ["20158", "15381", "15380"]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "反叛的鲁路修", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 10, "duration_ms": 3326.0, "error": null, "top_titles": ["Wo, Xiu Xianjie De Gongdi", "Code Geass: Hangyaku no Lelouch II - Handou", "Congming de Yixiu Zhi Fan Dou Gongzhu"], "top_ids": [60794, 34439, 30247]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "游戏人生", "hit": true, "position": 7, "kind": "title_substring", "n_returned": 10, "duration_ms": 2995.9, "error": null, "top_titles": ["Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta 2nd Season", "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~ 第2期", "I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too Season 2", "Boukensha License wo Hakudatsu sareta Ossan dakedo, Manamusume ga Dekita node Nonbiri Jinsei wo Ouka suru", "I Lost My Adventurer's License", "but It's Fine Because I Have an Adorable Daughter Now"], "top_ids": [63822, 63256, 63256]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "코드 기아스 반역의 를르슈", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 3213.7, "error": null, "top_titles": ["Code Name X"], "top_ids": [56354]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "노 게임 노 라이프", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 3207.5, "error": null, "top_titles": ["No More Princes", "노 모어 프린스", "Laftel", "Dummy: No Way Out", "더미 노 웨이 아웃", "Studio Yona"], "top_ids": [55722, 56387]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "遊戲人生", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6260.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "Re:从零开始的异世界生活", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12346.6, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "游戏人生", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2668.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Code Geass: Lelouch of the Rebellion", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3731.9, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch", "Code Geass: Hangyaku no Lelouch Picture Drama - Hajimari no Zenya", "Code Geass: Hangyaku no Lelouch II - Handou"], "top_ids": [1575, 33155, 34439]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "code geass lelouch of the rebellion", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3226.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "No Game, No Life", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4826.8, "error": null, "top_titles": ["No Game No Life", "NGNL", "ノーゲーム・ノーライフ", "No Game No Life: Zero", "NGNL Zero", "NGNL the Movie", "No Game No Life Specials", "NGNL Specials"], "top_ids": [19815, 33674, 24991]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "Re:從零開始的異世界生活", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4114.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "노 게임 노 라이프", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 3475.5, "error": null, "top_titles": ["No More Prince"], "top_ids": ["47579"]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "Re:ゼロから始める異世界生活", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3450.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "Re:從零開始的異世界生活 第一季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1949.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "code geass lelouch of the rebellion", "hit": true, "position": 5, "kind": "title_exact", "n_returned": 10, "duration_ms": 2610.6, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch Picture Drama - Hajimari no Zenya", "Code Geass: Hangyaku no Lelouch II - Handou", "Code Geass: Hangyaku no Lelouch Special Edition - Black Rebellion"], "top_ids": [33155, 34439, 4596]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "Re:从零开始的异世界生活", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3368.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "Re:ゼロから始める異世界生活", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3860.6, "error": null, "top_titles": ["Re:Zero kara Hajimeru Isekai Seikatsu", "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", "Re:Zero kara Hajimeru Isekai Seikatsu - Memory Snow"], "top_ids": [31240, 39587, 36286]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "Re:從零開始的異世界生活 第一季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5210.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "no game no life", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2808.2, "error": null, "top_titles": ["No Game No Life", "NGNL", "ノーゲーム・ノーライフ", "No Game No Life: Zero", "NGNL Zero", "NGNL the Movie", "No Game No Life Specials", "NGNL Specials"], "top_ids": [19815, 33674, 24991]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "Re:从零开始的异世界生活", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2550.5, "error": null, "top_titles": ["He Wei Dao x Re:Cong Ling Kaishi de Yi Shijie Shenghuo", "Re:Zero kara Hajimeru Isekai Seikatsu", "Re:Petit kara Hajimeru Isekai Seikatsu"], "top_ids": [38389, 31240, 33569]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "Re: 제로부터 시작하는 이세계 생활", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3269.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "Re:從零開始的異世界生活", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 2894.5, "error": null, "top_titles": ["He Wei Dao x Re:Cong Ling Kaishi de Yi Shijie Shenghuo", "Re:Petit kara Hajimeru Isekai Seikatsu", "Re:Zero kara Hajimeru Isekai Seikatsu"], "top_ids": [38389, 33569, 31240]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "Re:从零开始的异世界生活 第一季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12202.2, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "No Game, No Life", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 14793.5, "error": null, "top_titles": ["No Game No Life", "NGNL", "No Game No Life: Zero", "No Game No Life Movie", "No Game, No Life Zero", "No Game No Life Specials", "NGNL Specials"], "top_ids": ["7880", "12325", "8534"]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "Re:從零開始的異世界生活 第一季", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2451.1, "error": null, "top_titles": ["He Wei Dao x Re:Cong Ling Kaishi de Yi Shijie Shenghuo", "Re:Zero kara Hajimeru Isekai Seikatsu", "Re:Petit kara Hajimeru Isekai Seikatsu"], "top_ids": [38389, 31240, 33569]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "Re: 제로부터 시작하는 이세계 생활", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 2, "duration_ms": 2646.4, "error": null, "top_titles": ["Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", "Re:ZERO -Starting Life in Another World- Season 2", "Re:ゼロから始める異世界生活 2nd Season", "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", "Re:ZERO -Starting Life in Another World- Season 2 Part 2", "Re:ゼロから始める異世界生活 2nd Season Part 2"], "top_ids": [108632, 119661]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Re:ZERO -Starting Life in Another World-", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 5308.7, "error": null, "top_titles": ["Re:ZERO -Starting Life in Another World-", "Masahiro Shinohara", "Masahiro Yokotani"], "top_ids": ["35362", "34168", "27619"]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Re:ZERO -Starting Life in Another World-", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 2722.1, "error": null, "top_titles": ["Re:Zero kara Hajimeru Isekai Seikatsu", "Re:ZERO -Starting Life in Another World-", "Re:ゼロから始める異世界生活", "Re:Zero kara Hajimeru Isekai Seikatsu OVAs", "Re:ZERO -Starting Life in Another World- OVAs", "Re:ゼロから始める異世界生活 OVAs", "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", "Re:ZERO -Starting Life in Another World- Season 3"], "top_ids": [21355, 100049, 163134]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "Re:从零开始的异世界生活 第一季", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 5874.3, "error": null, "top_titles": ["He Wei Dao x Re:Cong Ling Kaishi de Yi Shijie Shenghuo", "Re:Petit kara Hajimeru Isekai Seikatsu", "Re:Zero kara Hajimeru Isekai Seikatsu"], "top_ids": [38389, 33569, 31240]} +{"sample_index": 19, "mal_id": 19815, "popularity": 21, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "no game no life", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3509.6, "error": null, "top_titles": ["No Game No Life", "NGNL", "No Game No Life: Zero", "No Game No Life Movie", "No Game, No Life Zero", "No Game No Life Specials", "NGNL Specials"], "top_ids": ["7880", "12325", "8534"]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "コードギアス 反逆のルルーシュ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12175.0, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "re zero starting life in another world", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 3082.7, "error": null, "top_titles": ["Re:Zero kara Hajimeru Isekai Seikatsu", "Re:ZERO -Starting Life in Another World-", "Re:ゼロから始める異世界生活", "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", "Re:ZERO -Starting Life in Another World- Season 3", "Re:ゼロから始める異世界生活 3rd season", "Re:Zero kara Hajimeru Isekai Seikatsu OVAs", "Re:ZERO -Starting Life in Another World- OVAs"], "top_ids": [21355, 163134, 100049]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "反叛的魯路修", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2943.0, "error": null, "top_titles": ["Fanren Xiu Xian Zhuan: Mulan Zhi Zhan", "A Mortal's Journey 5th Season", "A Record of a Mortal's Journey to Immortality 5th Season"], "top_ids": [63240, 63240, 63240]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "コードギアス 反逆のルルーシュ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4051.7, "error": null, "top_titles": ["Code Geass: Lelouch of the Rebellion", "Code Geass: Hangyaku no Lelouch", "Code Geass: Hangyaku no Lelouch Recaps", "Code Geass: Lelouch of the Rebellion Episode 8.5 and Episode 17.5", "Code Geass: Hangyaku no Lelouch Specials", "Code Geass: Lelouch of the Rebellion R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season"], "top_ids": ["1415", "1921", "2634"]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "Re: 제로부터 시작하는 이세계 생활", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4402.2, "error": null, "top_titles": ["Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo", "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo 3rd Season", "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo 2nd Season"], "top_ids": [54714, 62811, 57616]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "四月は君の嘘", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2599.3, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Your lie in April", "四月は君の嘘", "Shigatsu wa Kimi no Uso: MOMENTS", "Your lie in April: Moments", "四月は君の嘘 MOMENTS"], "top_ids": [20665, 21039]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Re:ZERO -Starting Life in Another World-", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 1896.8, "error": null, "top_titles": ["Re:Zero kara Hajimeru Isekai Seikatsu", "He Wei Dao x Re:Cong Ling Kaishi de Yi Shijie Shenghuo", "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2"], "top_ids": [31240, 38389, 42203]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "反叛的鲁路修", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3363.4, "error": null, "top_titles": ["Fanren Xiu Xian Zhuan: Mulan Zhi Zhan", "A Mortal's Journey 5th Season", "A Record of a Mortal's Journey to Immortality 5th Season"], "top_ids": [63240, 63240, 63240]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "反叛的魯路修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3455.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "四月是你的谎言", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 4033.5, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Your lie in April", "四月は君の嘘"], "top_ids": [20665]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "re zero starting life in another world", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2893.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "反叛的魯路修", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4309.9, "error": null, "top_titles": ["Fanren Xiu Xian Zhuan: Mulan Zhi Zhan", "A Mortal's Journey 5th Season", "A Record of a Mortal's Journey to Immortality 5th Season"], "top_ids": [63240, 63240, 63240]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "反叛的鲁路修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5004.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "四月是你的謊言", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4341.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "反叛的鲁路修", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2792.8, "error": null, "top_titles": ["Fanren Xiu Xian Zhuan: Mulan Zhi Zhan", "A Mortal's Journey 5th Season", "A Record of a Mortal's Journey to Immortality 5th Season"], "top_ids": [63240, 63240, 63240]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "四月は君の嘘", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3972.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "re zero starting life in another world", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5186.7, "error": null, "top_titles": ["Re:Zero kara Hajimeru Isekai Seikatsu", "He Wei Dao x Re:Cong Ling Kaishi de Yi Shijie Shenghuo", "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2"], "top_ids": [31240, 38389, 42203]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "反叛的魯路修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3990.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "四月是你的谎言", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2052.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "四月是你的謊言", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3968.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "코드 기아스 반역의 를르슈", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 4421.8, "error": null, "top_titles": ["Code Name X", "코드네임X", "Action"], "top_ids": [56354]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "四月は君の嘘", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4463.7, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Shigatsu wa Kimi no Uso: Moments", "Shina Dark: Kuroki Tsuki no Ou to Souheki no Tsuki no Himegimi"], "top_ids": [23273, 28069, 3642]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "四月是你的謊言", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4270.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "反叛的鲁路修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5151.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "四月是你的谎言", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 10, "duration_ms": 4008.1, "error": null, "top_titles": ["Jintian de Wancan Jiushi Ni", "Ni De Rensheng Shi Wo Lai Chi Le", "Shouhu Lian Meng ROY6: Senlin Li de Minini"], "top_ids": [58554, 56987, 53226]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "四月是你的谎言", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 9003.8, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Your lie in April", "四月は君の嘘"], "top_ids": [20665]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "四月是你的謊言", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 10, "duration_ms": 2943.0, "error": null, "top_titles": ["Jintian de Wancan Jiushi Ni", "Ni De Rensheng Shi Wo Lai Chi Le", "Shouhu Lian Meng ROY6: Senlin Li de Minini"], "top_ids": [58554, 56987, 53226]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "4월은 너의 거짓말", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7216.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "四月是你的謊言", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 10, "duration_ms": 2065.3, "error": null, "top_titles": ["Jintian de Wancan Jiushi Ni", "Ni De Rensheng Shi Wo Lai Chi Le", "Shouhu Lian Meng ROY6: Senlin Li de Minini"], "top_ids": [58554, 56987, 53226]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "4월은 너의 거짓말", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2503.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Code Geass: Lelouch of the Rebellion", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 10980.3, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch", "コードギアス 反逆のルルーシュ", "Code Geass: Lelouch of the Rebellion", "Code Geass: Hangyaku no Lelouch Special Edition - Black Rebellion", "Code Geass: Lelouch of the Rebellion Special Edition Black Rebellion", "コードギアス 反逆のルルーシュ SPECIAL EDITION BLACK REBELLION", "Code Geass: Hangyaku no Lelouch R2", "Code Geass: Hangyaku no Lelouch 2nd Season"], "top_ids": [1575, 4596, 2904]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Your Lie in April", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2023.4, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Your lie in April", "四月は君の嘘", "Shigatsu wa Kimi no Uso: MOMENTS", "Your lie in April: Moments", "四月は君の嘘 MOMENTS"], "top_ids": [20665, 21039]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Your Lie in April", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3611.5, "error": null, "top_titles": ["Your Lie in April", "Kyōhei Ishiguro", "Takao Yoshioka"], "top_ids": ["16108"]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "코드 기아스 반역의 를르슈", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12186.3, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "code geass lelouch of the rebellion", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3699.5, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch", "コードギアス 反逆のルルーシュ", "Code Geass: Lelouch of the Rebellion", "Code Geass: Hangyaku no Lelouch Special Edition - Black Rebellion", "Code Geass: Lelouch of the Rebellion Special Edition Black Rebellion", "コードギアス 反逆のルルーシュ SPECIAL EDITION BLACK REBELLION", "Code Geass: Hangyaku no Lelouch R2", "Code Geass: Hangyaku no Lelouch 2nd Season"], "top_ids": [1575, 4596, 2904]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "四月是你的谎言", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 10, "duration_ms": 7449.8, "error": null, "top_titles": ["Jintian de Wancan Jiushi Ni", "Ni De Rensheng Shi Wo Lai Chi Le", "Shouhu Lian Meng ROY6: Senlin Li de Minini"], "top_ids": [58554, 56987, 53226]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "your lie in april", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2969.5, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Your lie in April", "四月は君の嘘", "Shigatsu wa Kimi no Uso: MOMENTS", "Your lie in April: Moments", "四月は君の嘘 MOMENTS"], "top_ids": [20665, 21039]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Code Geass: Lelouch of the Rebellion", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3391.4, "error": null, "top_titles": ["Code Geass: Lelouch of the Rebellion", "Code Geass: Hangyaku no Lelouch", "Code Geass: Lelouch of the Rebellion R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season", "Code Geass: Lelouch of the Rebellion R2 Special Edition Zero Requiem"], "top_ids": ["1415", "2634", "4705"]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "4월은 너의 거짓말", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 2644.5, "error": null, "top_titles": ["Neoui Moseub", "Neoui Mogsoli", "Hayan Geojismal"], "top_ids": [51343, 54512, 55180]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 3, "kind": "id", "n_returned": 10, "duration_ms": 2587.3, "error": null, "top_titles": ["Boku no Hero Academia", "My Hero Academia", "僕のヒーローアカデミア", "Boku no Hero Academia 4", "My Hero Academia Season 4", "僕のヒーローアカデミア4", "Boku no Hero Academia 2", "My Hero Academia Season 2"], "top_ids": [21459, 104276, 21856]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Your Lie in April", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 1895.5, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Shigatsu wa Kimi no Uso: Moments", "Muttsuri Dosukebe Tsuyu Gibo Shimai no Honshitsu Minuite Sex Sanmai"], "top_ids": [23273, 28069, 37233]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "Re:ゼロから始める異世界生活", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5082.9, "error": null, "top_titles": ["Re:Zero kara Hajimeru Isekai Seikatsu", "Re: Life in a different world from zero", "ReZero", "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", "Re: Life in a different world from zero 2nd Season", "ReZero 2nd Season", "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2"], "top_ids": [31240, 39587, 42203]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "我的英雄学园", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2397.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "我的英雄學園", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3652.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "your lie in april", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2557.9, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Shigatsu wa Kimi no Uso: Moments", "Muttsuri Dosukebe Tsuyu Gibo Shimai no Honshitsu Minuite Sex Sanmai"], "top_ids": [23273, 28069, 37233]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3103.9, "error": null, "top_titles": ["Boku no Hero Academia 5th Season", "Boku no Hero Academia 3rd Season", "Boku no Hero Academia 2nd Season"], "top_ids": [41587, 36456, 33486]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "我的英雄学院", "hit": true, "position": 5, "kind": "id", "n_returned": 7, "duration_ms": 3630.5, "error": null, "top_titles": ["Boku no Hero Academia", "My Hero Academia", "僕のヒーローアカデミア", "Boku no Hero Academia 5", "My Hero Academia Season 5", "僕のヒーローアカデミア5", "Boku no Hero Academia 4", "My Hero Academia Season 4"], "top_ids": [21459, 117193, 104276]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "your lie in april", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 5928.8, "error": null, "top_titles": ["Your Lie in April", "Kyōhei Ishiguro", "Takao Yoshioka"], "top_ids": ["16108"]} +{"sample_index": 20, "mal_id": 1575, "popularity": 22, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "code geass lelouch of the rebellion", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12179.4, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "我的英雄学园", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4736.4, "error": null, "top_titles": ["Jijia Yingxiong Movie: Wo Yu Wo Dengyu Wuxian Da", "Wo Men de Jia Yuan", "Wo Shi Xuexiao Weiyi de Renlei"], "top_ids": [56144, 45866, 54224]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5037.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "Re:从零开始的异世界生活", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13229.5, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3241.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "Re:ゼロから始める異世界生活", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 7, "duration_ms": 3216.7, "error": null, "top_titles": ["Re:Zero kara Hajimeru Isekai Seikatsu 3", "Re:Zero kara Hajimeru Isekai Seikatsu - Memory Snow - Manner Movie", "Re:Zero kara Hajimeru Isekai Seikatsu - Hyouketsu no Kizuna - Manner Movie"], "top_ids": ["47235", "42392", "43306"]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "Re:從零開始的異世界生活", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2650.3, "error": null, "top_titles": ["Tokyo Ghoul:re", "Tokyo Kushu:re", "Toukyou Kuushu:re", "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", "Re: Life in a different world from zero 2nd Season", "ReZero 2nd Season", "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2"], "top_ids": [36511, 39587, 42203]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "我的英雄學園", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3732.8, "error": null, "top_titles": ["Jijia Yingxiong Movie: Wo Yu Wo Dengyu Wuxian Da", "Kaixin Chaoren: Yingxiong de Xin", "Wo Shi Na Zha 2: Yingxiong Guilai"], "top_ids": [56144, 57384, 56795]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "我的英雄学园", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2930.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "Re:從零開始的異世界生活 第一季", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 2972.7, "error": null, "top_titles": ["Re:␣Hamatora", "Hamatora The Animation 2nd Season", "Reply Hamatora", "Re:Zero kara Hajimeru Isekai Seikatsu 4th Season", "Re: Life in a different world from zero", "ReZero", "Re:Zero kara Hajimeru Isekai Seikatsu"], "top_ids": [23421, 61316, 31240]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3580.2, "error": null, "top_titles": ["Kexue Guai Boshi: Shenqi de Taiyang Xueyuan", "Jijia Yingxiong Movie: Wo Yu Wo Dengyu Wuxian Da", "Xiong Bing Lian"], "top_ids": [46953, 56144, 37643]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "Re:从零开始的异世界生活", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5050.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4197.1, "error": null, "top_titles": ["Jijia Yingxiong Movie: Wo Yu Wo Dengyu Wuxian Da", "Kaixin Chaoren: Yingxiong de Xin", "Wo Shi Na Zha 2: Yingxiong Guilai"], "top_ids": [56144, 57384, 56795]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "Re:从零开始的异世界生活 第一季", "hit": true, "position": 3, "kind": "id", "n_returned": 10, "duration_ms": 5162.2, "error": null, "top_titles": ["He Wei Dao x Re:Cong Ling Kaishi de Yi Shijie Shenghuo", "Re:ZERO -Starting Life in Another World-", "Re: Life in a different world from zero", "Re:␣Hamatora", "Hamatora The Animation 2nd Season", "Reply Hamatora", "Re:Zero kara Hajimeru Isekai Seikatsu 4th Season", "ReZero"], "top_ids": [38389, 23421, 61316]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12334.9, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "Re: 제로부터 시작하는 이세계 생활", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 3298.2, "error": null, "top_titles": ["Re:␣Hamatora", "Hamatora The Animation 2nd Season", "Reply Hamatora", "Re:Zero kara Hajimeru Isekai Seikatsu 4th Season", "Re: Life in a different world from zero", "ReZero", "Re:Zero kara Hajimeru Isekai Seikatsu"], "top_ids": [23421, 61316, 31240]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "Re:從零開始的異世界生活", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7468.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "Re:從零開始的異世界生活 第一季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2939.1, "error": null, "top_titles": ["Re:Zero kara Hajimeru Isekai Seikatsu", "Re: Life in a different world from zero", "ReZero", "ReLIFE", "Re LIFE", "Re:Zero kara Hajimeru Isekai Seikatsu 2"], "top_ids": ["11209", "10464", "42198"]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Re:ZERO -Starting Life in Another World-", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5447.2, "error": null, "top_titles": ["Re:Zero kara Hajimeru Isekai Seikatsu", "Re: Life in a different world from zero", "ReZero", "He Wei Dao x Re:Cong Ling Kaishi de Yi Shijie Shenghuo", "Re:ZERO -Starting Life in Another World-", "Re:Zero kara Hajimeru Isekai Seikatsu 4th Season"], "top_ids": [31240, 38389, 61316]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 16102.2, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12166.5, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12177.0, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3311.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "Re:从零开始的异世界生活 第一季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6684.6, "error": null, "top_titles": ["Re:Zero kara Hajimeru Isekai Seikatsu", "Re: Life in a different world from zero", "ReZero", "ReLIFE", "Re LIFE", "Re:Zero kara Hajimeru Isekai Seikatsu 2"], "top_ids": ["11209", "10464", "42198"]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "re zero starting life in another world", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2633.6, "error": null, "top_titles": ["Re:Zero kara Hajimeru Isekai Seikatsu", "Re: Life in a different world from zero", "ReZero", "Re:Zero kara Hajimeru Isekai Seikatsu 4th Season", "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", "Re: Life in a different world from zero 2nd Season", "ReZero 2nd Season"], "top_ids": [31240, 61316, 39587]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3126.7, "error": null, "top_titles": ["Jijia Yingxiong Movie: Wo Yu Wo Dengyu Wuxian Da", "Kaixin Chaoren: Yingxiong de Xin", "Wo Shi Na Zha 2: Yingxiong Guilai"], "top_ids": [56144, 57384, 56795]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "나의 히어로 아카데미아 3기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2013.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "나의 히어로 아카데미아 3기", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2340.2, "error": null, "top_titles": ["Dudadakung 3rd Season", "Psychic Hero", "Hero Inside 2"], "top_ids": [54128, 48273, 60910]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "Re: 제로부터 시작하는 이세계 생활", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3933.1, "error": null, "top_titles": ["Re:Zero kara Hajimeru Isekai Seikatsu", "Re: Life in a different world from zero", "ReZero", "ReLIFE", "Re LIFE", "Re:Zero kara Hajimeru Isekai Seikatsu 2"], "top_ids": ["11209", "10464", "42198"]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "나의 히어로 아카데미아 3기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4480.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "四月は君の嘘", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3657.3, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Kimiuso", "四月は君の嘘", "Shigatsu wa Kimi no Uso: Moments", "Shigatsu wa Kimi no Uso OVA", "四月は君の嘘 MOMENTS", "Lupin the IIIrd: Mine Fujiko no Uso", "LUPIN THE IIIRD 峰不二子の嘘"], "top_ids": [23273, 28069, 39487]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "My Hero Academia Season 3", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 4578.8, "error": null, "top_titles": ["Boku no Hero Academia 3", "My Hero Academia Season 3", "僕のヒーローアカデミア3", "Boku no Hero Academia THE MOVIE: World Heroes' Mission", "My Hero Academia: World Heroes' Mission", "僕のヒーローアカデミア THE MOVIE ワールド ヒーローズ ミッション"], "top_ids": [100166, 126659]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "My Hero Academia Season 3", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3310.1, "error": null, "top_titles": ["Boku no Hero Academia 3rd Season", "Boku no Hero Academia the Movie 3: World Heroes' Mission", "Boku no Hero Academia the Movie 3: World Heroes' Mission - Tabidachi"], "top_ids": [36456, 44200, 50532]} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Re:ZERO -Starting Life in Another World-", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 3501.7, "error": null, "top_titles": ["Genjitsu Shugi Yuusha no Oukoku Saikenki", "Re:Construction the Elfrieden Kingdom Tales of Realistic Brave", "A Realist Hero's Kingdom Restoration Chronicle"], "top_ids": ["43613"]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "四月是你的谎言", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 4941.8, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Kimiuso", "四月は君の嘘", "Shigatsu wa Kimi no Uso: Moments", "Shigatsu wa Kimi no Uso OVA", "四月は君の嘘 MOMENTS", "Watanuki-san Chi no", "Watanuki's House"], "top_ids": [23273, 28069, 39668]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "四月是你的謊言", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 2858.6, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Kimiuso", "四月は君の嘘", "Shigatsu wa Kimi no Uso: Moments", "Shigatsu wa Kimi no Uso OVA", "四月は君の嘘 MOMENTS", "Watanuki-san Chi no", "Watanuki's House"], "top_ids": [23273, 28069, 39668]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "四月是你的謊言", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 3170.3, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Kimiuso", "四月は君の嘘", "Shigatsu wa Kimi no Uso: Moments", "Shigatsu wa Kimi no Uso OVA", "四月は君の嘘 MOMENTS", "Watanuki-san Chi no", "Watanuki's House"], "top_ids": [23273, 28069, 39668]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia season 3", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 5902.5, "error": null, "top_titles": ["Boku no Hero Academia 3", "My Hero Academia Season 3", "僕のヒーローアカデミア3", "Boku no Hero Academia THE MOVIE: World Heroes' Mission", "My Hero Academia: World Heroes' Mission", "僕のヒーローアカデミア THE MOVIE ワールド ヒーローズ ミッション"], "top_ids": [100166, 126659]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "My Hero Academia Season 3", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 11785.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "とらドラ!", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2346.2, "error": null, "top_titles": ["Toradora!", "とらドラ!", "Toradora!: SOS!", "Toradora!: SOS! Hurray for Foodies", "とらドラ! SOS!", "Toradora!: Bentou no Gokui", "Toradora!: Bento Battle", "とらドラ! 弁当の極意"], "top_ids": [4224, 6127, 11553]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "四月是你的谎言", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 4603.8, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Kimiuso", "四月は君の嘘", "Shigatsu wa Kimi no Uso: Moments", "Shigatsu wa Kimi no Uso OVA", "四月は君の嘘 MOMENTS", "Watanuki-san Chi no", "Watanuki's House"], "top_ids": [23273, 28069, 39668]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ja", "backend": "anilist", "variant": "enhance_hira2kata", "query": "トラドラ!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3213.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia season 3", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13191.2, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "とらどら!", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 4, "duration_ms": 2325.4, "error": null, "top_titles": ["Toradora!: Ami no Monomane 150 Renpatsu!!", "とらどら!亜美モノマネ150連発!!", "Sword Art Offline", "Sword Art OFFline", "そーどあーと・おふらいん", "Sword Art Offline: Extra Edition", "そーどあーと・おふらいん Extra Edition"], "top_ids": [206729, 16099, 20895]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "4월은 너의 거짓말", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4906.7, "error": null, "top_titles": ["Persona 4 the Golden Animation", "P4GA", "ペルソナ4 ザ・ゴールデンアニメーション", "Persona 3 the Movie 4: Winter of Rebirth", "PERSONA3 THE MOVIE —#4 Winter of Rebirth—", "Persona 3 the Movie: #4 Winter of Rebirth", "Yami Shibai 4", "Yamishibai: Japanese Ghost Stories Fourth Season"], "top_ids": [24075, 31149, 34467]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "とらドラ!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4238.9, "error": null, "top_titles": ["Toradora!", "Toradora! Recap", "Toradora!: Bentou no Gokui"], "top_ids": [4224, 23701, 11553]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Your Lie in April", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2412.4, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Kimiuso", "四月は君の嘘", "Shigatsu wa Kimi no Uso: Moments", "Shigatsu wa Kimi no Uso OVA", "四月は君の嘘 MOMENTS", "Huan You Lieren", "Huan You Lie Ren"], "top_ids": [23273, 28069, 50604]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_hira2kata", "query": "トラドラ!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2925.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 21, "mal_id": 31240, "popularity": 23, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "re zero starting life in another world", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12255.3, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia season 3", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3683.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "とらどら!", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3260.8, "error": null, "top_titles": ["Tsukuyomi: Moon Phase Special", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. OVA", "To LOVE-Ru: Multiplication - Mae kara Ushiro kara"], "top_ids": [2580, 18753, 35000]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "四月は君の嘘", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2654.2, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Shigatsu wa Kimi no Uso: Moments", "Shigatsu wa Kimi no Uso OVA"], "top_ids": ["8403", "9968"]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "龙与虎", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 1931.8, "error": null, "top_titles": ["Chongchong Yu Long Long", "Nai Long Yu Xiao Qi: Dazhan Baobao Long", "Xi Yangyang Yu Hui Tailang: Hu Hu Sheng Wei"], "top_ids": [45226, 60826, 9973]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "your lie in april", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5022.6, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso", "Kimiuso", "四月は君の嘘", "Shigatsu wa Kimi no Uso: Moments", "Shigatsu wa Kimi no Uso OVA", "四月は君の嘘 MOMENTS", "Huan You Lieren", "Huan You Lie Ren"], "top_ids": [23273, 28069, 50604]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "とらドラ!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3637.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "四月是你的谎言", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2397.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "龙与虎", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14311.4, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "龍與虎", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3409.0, "error": null, "top_titles": ["Battle Spirits: Ryuuko no Ken", "Hu Hu Xiaotiandi", "Xi Yangyang Yu Hui Tailang: Hu Hu Sheng Wei"], "top_ids": [1009, 46843, 9973]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "龍與虎", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2084.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "四月是你的謊言", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4387.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ja", "backend": "ann", "variant": "enhance_hira2kata", "query": "トラドラ!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4912.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "虎與龍", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3331.5, "error": null, "top_titles": ["Battle Spirits: Ryuuko no Ken", "Hu Hu Xiaotiandi", "Xi Yangyang Yu Hui Tailang: Hu Hu Sheng Wei"], "top_ids": [1009, 46843, 9973]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 7425.8, "error": null, "top_titles": ["Boku no Hero Academia", "僕のヒーローアカデミア", "My Hero Academia", "Boku no Hero Academia 2nd Season", "My Hero Academia Season 2", "Boku no Hero Academia 3rd Season", "My Hero Academia Season 3"], "top_ids": [31964, 33486, 36456]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "四月是你的謊言", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3188.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "とらどら!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3264.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "虎與龍", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4894.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "我的英雄学园", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2618.9, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "虎与龙", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5233.4, "error": null, "top_titles": ["Chongchong Yu Long Long", "Nai Long Yu Xiao Qi: Dazhan Baobao Long", "Xi Yangyang Yu Hui Tailang: Hu Hu Sheng Wei"], "top_ids": [45226, 60826, 9973]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "龙与虎", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4125.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "虎与龙", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3925.1, "error": null, "top_titles": ["Toradora!", "とらドラ!"], "top_ids": [4224]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "四月是你的谎言", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5841.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "我的英雄學園", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4088.5, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "토라도라!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4090.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "토라도라!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2612.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "4월은 너의 거짓말", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1946.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "虎與龍", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4688.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Toradora!", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 1666.2, "error": null, "top_titles": ["Toradora!", "とらドラ!", "Toradora!: SOS!", "Toradora!: SOS! Hurray for Foodies", "とらドラ! SOS!", "Toradora!: Bentou no Gokui", "Toradora!: Bento Battle", "とらドラ! 弁当の極意"], "top_ids": [4224, 6127, 11553]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Toradora!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2893.5, "error": null, "top_titles": ["Toradora!", "Toradora!: Bentou no Gokui", "Toradora!: SOS! Kuishinbou Banbanzai"], "top_ids": [4224, 11553, 6127]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Your Lie in April", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2907.5, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso"], "top_ids": ["8403"]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6105.9, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "토라도라!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3035.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "en", "backend": "anilist", "variant": "enhance_romaji_to_katakana", "query": "トラドラ!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2791.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Toradora!", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 2, "duration_ms": 4420.7, "error": null, "top_titles": ["Toradora!: The True Meaning of Bento", "Mari Okada", "Tatsuyuki Nagai", "Toradora!"], "top_ids": ["15518", "10050"]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4747.7, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 22, "mal_id": 23273, "popularity": 24, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "your lie in april", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 4148.6, "error": null, "top_titles": ["Shigatsu wa Kimi no Uso"], "top_ids": ["8403"]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2648.7, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "toradora", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 4674.2, "error": null, "top_titles": ["Toradora!", "とらドラ!", "Toradora!: SOS!", "Toradora!: SOS! Hurray for Foodies", "とらドラ! SOS!", "Toradora!: Bentou no Gokui", "Toradora!: Bento Battle", "とらドラ! 弁当の極意"], "top_ids": [4224, 6127, 11553]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 3074.6, "error": null, "top_titles": ["Boku no Hero Academia", "Boku no Hero Academia the Movie: Futari no Hero", "Boku no Hero Academia: All Might - Rising The Animation"], "top_ids": ["11469", "14084", "42046"]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2067.0, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "我的英雄学园", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2622.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "나의 히어로 아카데미아 3기", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3096.3, "error": null, "top_titles": ["Athlon Tobot 3", "Athlon Tobot 3rd Season", "애슬론 또봇 3기", "Pororo-wa Noraehaeyo 3rd Season", "뽀로로와 노래해요 3기", "Sing-A-Long with Pororo 3rd Season", "Dudadakung 3rd Season", "두다다쿵 3기"], "top_ids": [52738, 61916, 54128]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "モブサイコ100", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 5012.1, "error": null, "top_titles": ["Mob Psycho 100", "モブサイコ100", "Mob Psycho 100 III", "モブサイコ100 Ⅲ", "Mob Psycho 100 II", "モブサイコ100 II"], "top_ids": [21507, 140439, 101338]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "en", "backend": "shikimori", "variant": "enhance_romaji_to_katakana", "query": "トラドラ!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12275.9, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "我的英雄學園", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3319.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "もぶさいこ100", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2758.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "toradora", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 4, "duration_ms": 2323.7, "error": null, "top_titles": ["Toradora!: Bentou no Gokui", "Toradora!: SOS! Kuishinbou Banbanzai", "Toradora!"], "top_ids": [11553, 6127, 4224]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2845.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "My Hero Academia Season 3", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5961.8, "error": null, "top_titles": ["Boku no Hero Academia 3rd Season", "僕のヒーローアカデミア", "My Hero Academia Season 3", "Boku no Hero Academia 2nd Season", "My Hero Academia Season 2", "Boku no Hero Academia 4th Season", "My Hero Academia Season 4"], "top_ids": [36456, 33486, 38408]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "灵能百分百", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2405.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "モブサイコ100", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2726.2, "error": null, "top_titles": ["Mob Psycho 100", "Mob Psycho 100: Reigen - Shirarezaru Kiseki no Reinouryokusha", "Mob Psycho 100: Dai Ikkai Rei toka Soudansho Ian Ryokou - Kokoro Mitasu Iyashi no Tabi"], "top_ids": [32182, 36616, 39651]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2447.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "もぶさいこ100", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2176.2, "error": null, "top_titles": ["Tsukuyomi: Moon Phase Special", "Kamisama Minarai: Himitsu no Cocotama Movie - Kiseki wo Okose♪ Tepple to Dokidoki Cocotama-kai", "Atsumare! Kakkoii 1-nensei Power!: Korasho Kyuushutsu Daisakusen"], "top_ids": [2580, 34198, 54425]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "灵能百分百", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 10, "duration_ms": 2799.0, "error": null, "top_titles": ["Hyakki", "Hyaku", "Bai Yao Pu"], "top_ids": [1782, 49366, 41224]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "toradora", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 3, "duration_ms": 10527.9, "error": null, "top_titles": ["Toradora!: The True Meaning of Bento", "Mari Okada", "Tatsuyuki Nagai", "Toradora SOS! Hurray for Gourmands", "Michiko Itou", "Yoshiki Yamakawa", "Toradora!"], "top_ids": ["15518", "15517", "10050"]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "我的英雄学院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5944.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "モブサイコ100", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2751.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "靈能百分百", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 10, "duration_ms": 4754.1, "error": null, "top_titles": ["Hyakki", "Hyaku", "Bai Yao Pu"], "top_ids": [1782, 49366, 41224]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia season 3", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7817.3, "error": null, "top_titles": ["Boku no Hero Academia 3rd Season", "僕のヒーローアカデミア", "My Hero Academia Season 3", "Boku no Hero Academia 2nd Season", "My Hero Academia Season 2", "Boku no Hero Academia 4th Season", "My Hero Academia Season 4"], "top_ids": [36456, 33486, 38408]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "我的英雄學院", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3625.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "靈能百分百", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13182.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "路人超能100", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2739.0, "error": null, "top_titles": ["Fou Fou Zheng Nengliang", "Kaixin Chaoren Lianmeng: Nengyuan He Shouhu Zhe", "Kinnikuman: Seigi Choujin vs. Kodai Choujin"], "top_ids": [46810, 44118, 3275]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "나의 히어로 아카데미아 3기", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 3032.8, "error": null, "top_titles": ["Zombie-ttal", "좀비가 되어버린 나의 딸", "Zombie-ga Doeeobeorin Nauittal"], "top_ids": ["47248"]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "모브사이코100", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4443.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "もぶさいこ100", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8577.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "My Hero Academia Season 3", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 4329.2, "error": null, "top_titles": ["Boku no Hero Academia 3"], "top_ids": ["13881"]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "路人超能100", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6025.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "とらドラ!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 8873.4, "error": null, "top_titles": ["Toradora!", "Tiger X Dragon", "とらドラ!", "Toradora!: Bentou no Gokui", "Toradora!: The True Meaning of Bento", "Toradora!: Bentou Battle", "Toradora!: SOS! Kuishinbou Banbanzai", "Toradora! SOS! Hooray for Foodies"], "top_ids": [4224, 11553, 6127]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "모브사이코100", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6405.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "灵能百分百", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9933.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Mob Psycho 100", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 10832.5, "error": null, "top_titles": ["Mob Psycho 100", "Kidou Senshi Gundam 0080: Pocket no Naka no Sensou", "Mob Psycho 100 II"], "top_ids": [32182, 82, 37510]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ja", "backend": "jikan", "variant": "enhance_hira2kata", "query": "トラドラ!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 10988.8, "error": null, "top_titles": ["Toradora!", "Tiger X Dragon", "とらドラ!", "Toradora!: Bentou no Gokui", "Toradora!: The True Meaning of Bento", "Toradora!: Bentou Battle", "The☆Doraemons: Kaitou Dorapin Nazo no Chousenjou!", "ザ☆ドラえもんズ 怪盗ドラパン謎の挑戦状!"], "top_ids": [4224, 11553, 2625]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "路人超能100", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5523.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Mob Psycho 100", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 8555.7, "error": null, "top_titles": ["Mob Psycho 100", "モブサイコ100", "Mob Psycho 100 III", "モブサイコ100 Ⅲ", "Mob Psycho 100 II", "モブサイコ100 II"], "top_ids": [21507, 140439, 101338]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "とらどら!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3959.8, "error": null, "top_titles": ["Toradora!", "Tiger X Dragon", "とらドラ!", "To LOVE-Ru", "Toraburu", "Love Trouble", "To LOVE-Ru Darkness", "To LOVE-Ru Trouble Darkness"], "top_ids": [4224, 3455, 13663]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "mob psycho 100", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2564.3, "error": null, "top_titles": ["Mob Psycho 100", "Kidou Senshi Gundam 0080: Pocket no Naka no Sensou", "Mob Psycho 100 III"], "top_ids": [32182, 82, 50172]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "모브사이코100", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2536.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "龙与虎", "hit": true, "position": 8, "kind": "title_substring", "n_returned": 10, "duration_ms": 2847.1, "error": null, "top_titles": ["Aaron He Lili", "A Long He Lili", "阿龙与利利", "Chongchong Yu Long Long", "冲冲与龙龙", "Kids", "Nai Long Yu Xiao Qi: Dazhan Baobao Long", "奶龙与小七之大战暴暴龙"], "top_ids": [43656, 45226, 60826]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "龍與虎", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3736.3, "error": null, "top_titles": ["Ryuu", "龍", "Sony Music Entertainment", "Long Zu III: Hei Yue Zhi Chao", "Long Zu 3rd Season", "龙族 第3季"], "top_ids": [61315, 63235, 63235]} +{"sample_index": 23, "mal_id": 36456, "popularity": 25, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia season 3", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 15959.5, "error": null, "top_titles": ["Boku no Hero Academia 3"], "top_ids": ["13881"]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Mob Psycho 100", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 5, "duration_ms": 5485.2, "error": null, "top_titles": ["Mob Psycho 100 III", "Yuzuru Tachikawa", "Takahiro Hasui", "Mob Psycho 100 II", "Hiroshi Seko"], "top_ids": ["24878", "22493", "21204"]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ノラガミ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 7331.5, "error": null, "top_titles": ["Noragami", "Noragami OVA", "Noragami Aragoto OVA"], "top_ids": [20507, 20767, 30885]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "とらドラ!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2843.4, "error": null, "top_titles": ["Toradora!", "Tiger X Dragon", "Toradora!: Bentou no Gokui", "Toradora! Special", "Toradora!: The True Meaning of Bento", "Toradora!: SOS!"], "top_ids": ["3532", "6536", "4438"]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "のらがみ", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3319.6, "error": null, "top_titles": ["Mirai e no Tegami: Kono Michi no Tochuu kara", "Shimajirou to Mimirin no Nagare Hoshi Monogatari", "Takarasagashi no Natsuyasumi"], "top_ids": [35047, 53983, 38817]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "虎與龍", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4591.0, "error": null, "top_titles": ["Josee to Tora to Sakana-tachi", "ジョゼと虎と魚たち", "Josee, the Tiger and the Fish", "Suisou no Tora", "Tiger in a Water Tank", "水槽の虎", "Yakyuukyou no Uta: Kita no Ookami Minami no Tora", "野球狂の詩 北の狼南の虎"], "top_ids": [40787, 48708, 10563]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "mob psycho 100", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 7592.6, "error": null, "top_titles": ["Mob Psycho 100", "モブサイコ100", "Mob Psycho 100 III", "モブサイコ100 Ⅲ", "Mob Psycho 100 II", "モブサイコ100 II"], "top_ids": [21507, 140439, 101338]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "野良神", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2898.6, "error": null, "top_titles": ["Norasco", "Norasco (TV)", "Norasco (Movie)"], "top_ids": [24773, 31019, 34092]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "虎与龙", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3464.9, "error": null, "top_titles": ["Josee to Tora to Sakana-tachi", "ジョゼと虎と魚たち", "Josee, the Tiger and the Fish", "Suisou no Tora", "Tiger in a Water Tank", "水槽の虎", "Yakyuukyou no Uta: Kita no Ookami Minami no Tora", "野球狂の詩 北の狼南の虎"], "top_ids": [40787, 48708, 10563]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ノラガミ", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 3685.0, "error": null, "top_titles": ["Noragami", "ノラガミ", "Noragami ARAGOTO", "Noragami Aragoto", "ノラガミ ARAGOTO", "Noragami OVA", "ノラガミ OAD"], "top_ids": [20447, 21128, 20494]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_hira2kata", "query": "トラドラ!", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6974.5, "error": null, "top_titles": ["Trapp Ikka Monogatari", "Sekai Meisaku Gekijou", "Yoshida Katsuko no Yabai wa! SDGs: Araburu! Trouble! Sustainable!", "Pandora Hearts"], "top_ids": ["2322", "45684", "4138"]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "流浪神差", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4462.7, "error": null, "top_titles": ["Rurouni Kenshin Special", "San Mao Liu Lang Ji (2006)", "Xiao Bei Liulang Ji"], "top_ids": [12067, 31691, 43961]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "토라도라!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3871.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "とらどら!", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 4714.8, "error": null, "top_titles": ["VladLove", "Vlad Love"], "top_ids": ["42413"]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Toradora!", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 3467.2, "error": null, "top_titles": ["Toradora!", "Tiger X Dragon", "とらドラ!", "Toradora!: Bentou no Gokui", "Toradora!: The True Meaning of Bento", "Toradora!: Bentou Battle", "Toradora!: SOS! Kuishinbou Banbanzai", "Toradora! SOS! Hooray for Foodies"], "top_ids": [4224, 11553, 6127]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "のらがみ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7755.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "流浪神差", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6326.9, "error": null, "top_titles": ["Rurouni Kenshin Special", "San Mao Liu Lang Ji (2006)", "Xiao Bei Liulang Ji"], "top_ids": [12067, 31691, 43961]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "野良神", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3490.7, "error": null, "top_titles": ["Noragami", "ノラガミ"], "top_ids": [20447]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "龙与虎", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6061.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "노라가미", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3824.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "流浪神差", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3723.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "mob psycho 100", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 5, "duration_ms": 11074.4, "error": null, "top_titles": ["Mob Psycho 100 III", "Yuzuru Tachikawa", "Takahiro Hasui", "Mob Psycho 100 II", "Hiroshi Seko"], "top_ids": ["24878", "22493", "21204"]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Noragami", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 2683.4, "error": null, "top_titles": ["Noragami", "Noragami OVA", "Noragami Aragoto OVA"], "top_ids": [20507, 20767, 30885]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "龍與虎", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3893.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "en", "backend": "jikan", "variant": "enhance_romaji_to_katakana", "query": "トラドラ!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4387.6, "error": null, "top_titles": ["Toradora!", "Tiger X Dragon", "とらドラ!", "Toradora!: Bentou no Gokui", "Toradora!: The True Meaning of Bento", "Toradora!: Bentou Battle", "Toradora!: SOS! Kuishinbou Banbanzai", "Toradora! SOS! Hooray for Foodies"], "top_ids": [4224, 11553, 6127]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "虎與龍", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2944.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "en", "backend": "shikimori", "variant": "enhance_romaji_to_katakana", "query": "ノラガミ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 3469.0, "error": null, "top_titles": ["Noragami", "Noragami OVA", "Noragami Aragoto OVA"], "top_ids": [20507, 20767, 30885]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "流浪神差", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4971.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "noragami", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 2605.6, "error": null, "top_titles": ["Noragami", "Noragami OVA", "Nirvana"], "top_ids": [20507, 20767, 32468]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "虎与龙", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2801.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "僕だけがいない街", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2387.0, "error": null, "top_titles": ["Boku dake ga Inai Machi", "Boku dake ga Inai Machi Recaps", "Ore no Imouto ga Konnani Kawaii Wake ga Nai.: Ore no Imouto ga Konnani Eroge na Wake Nai"], "top_ids": [31043, 35815, 23363]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "토라도라!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2575.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "노라가미", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4719.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "toradora", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 8642.5, "error": null, "top_titles": ["Toradora!", "Tiger X Dragon", "とらドラ!", "Toradora!: Bentou no Gokui", "Toradora!: The True Meaning of Bento", "Toradora!: Bentou Battle", "Toradora!: SOS! Kuishinbou Banbanzai", "Toradora! SOS! Hooray for Foodies"], "top_ids": [4224, 11553, 6127]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Toradora!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 2804.6, "error": null, "top_titles": ["Toradora!", "Tiger X Dragon", "Toradora!: Bentou no Gokui", "Toradora! Special", "Toradora!: The True Meaning of Bento", "Toradora!: SOS!"], "top_ids": ["3532", "6536", "4438"]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ノラガミ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12284.8, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "只有我不存在的城市", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3646.2, "error": null, "top_titles": ["Chengshi Jiyi Wo Men de Jieri", "Wo de Laopo Shi Zhi Mao", "Ni Yizhi Meiyou Rang wo de Naozi Xiuxigou"], "top_ids": [48085, 44833, 58863]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Noragami", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 3440.9, "error": null, "top_titles": ["Noragami", "ノラガミ", "Noragami OVA", "ノラガミ OAD", "Heart Realize", "ハートリアライズ"], "top_ids": [20447, 20494, 102618]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "モブサイコ100", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4727.6, "error": null, "top_titles": ["Mob Psycho 100", "Mob Psycho Hyaku", "Mob Psycho One Hundred", "Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho 100 III", "Mob Psycho 100 3rd Season"], "top_ids": [32182, 37510, 50172]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "en", "backend": "anilist", "variant": "enhance_romaji_to_katakana", "query": "ノラガミ", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 2665.9, "error": null, "top_titles": ["Noragami", "ノラガミ", "Noragami ARAGOTO", "Noragami Aragoto", "ノラガミ ARAGOTO", "Noragami OVA", "ノラガミ OAD"], "top_ids": [20447, 21128, 20494]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "もぶさいこ100", "hit": true, "position": 9, "kind": "title_substring", "n_returned": 10, "duration_ms": 3012.6, "error": null, "top_titles": ["Tamayura: More Aggressive", "たまゆら ~もあぐれっしぶ~", "RAY", "Tamayura: More Aggressive - Ichinichi dake no Shuugakuryokou, nanode", "Tamayura: More Aggressive OVA", "Tamayura: More Aggressive Episode 8.5", "Tamayura: More Aggressive Picture Drama", "たまゆら ~もあぐれっしぶ~ ピクチャードラマ『来年の夏、汐入で会おうね、なので』"], "top_ids": [15731, 21737, 25169]} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "en", "backend": "kitsu", "variant": "enhance_romaji_to_katakana", "query": "トラドラ!", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3593.8, "error": null, "top_titles": ["Trapp Ikka Monogatari", "Sekai Meisaku Gekijou", "Yoshida Katsuko no Yabai wa! SDGs: Araburu! Trouble! Sustainable!", "Pandora Hearts"], "top_ids": ["2322", "45684", "4138"]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "のらがみ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6032.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "noragami", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 4599.2, "error": null, "top_titles": ["Noragami", "ノラガミ", "Noragami OVA", "ノラガミ OAD", "Heart Realize", "ハートリアライズ"], "top_ids": [20447, 20494, 102618]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "灵能百分百", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3979.6, "error": null, "top_titles": ["Lingjing Xingzhe", "Ling Jing Xing Zhe", "灵境行者", "Di Ling Ai: Mo Shui Linglong", "缔灵爱之默水玲珑", "Divine Love: Deep Blue", "Ling Long Di Yi Ji Jing Bian Ban", "灵笼第一季精编版"], "top_ids": [62734, 62681, 61747]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "只有我不存在的城市", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 9665.0, "error": null, "top_titles": ["Chengshi Jiyi Wo Men de Jieri", "Wo de Laopo Shi Zhi Mao", "Ni Yizhi Meiyou Rang wo de Naozi Xiuxigou"], "top_ids": [48085, 44833, 58863]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "野良神", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5525.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "靈能百分百", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4233.4, "error": null, "top_titles": ["Bai Gui Ri Xing", "百诡日行", "Phantom Hunter", "Bai Lian Cheng Shen 3", "Bai Lian Cheng Shen 3rd Season", "百炼成神 第三季", "Hyakujitsu no Bara", "百日の薔薇"], "top_ids": [62793, 62703, 5902]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "僕だけがいない街", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 6769.8, "error": null, "top_titles": ["Boku dake ga Inai Machi", "ERASED", "僕だけがいない街"], "top_ids": [21234]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "只有我不存在的城市", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1396.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "流浪神差", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4551.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "나만이 없는 거리", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 6609.0, "error": null, "top_titles": ["Geori-eui Mubeopja", "Nunchi Eobsneun Dolsoe"], "top_ids": [30042, 55724]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "流浪神差", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2346.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 24, "mal_id": 4224, "popularity": 26, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "toradora", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13212.4, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Erased", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 3197.7, "error": null, "top_titles": ["Boku dake ga Inai Machi", "Boku dake ga Inai Machi Recaps"], "top_ids": [31043, 35815]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "路人超能100", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6354.6, "error": null, "top_titles": ["100%", "A Hundred Percents", "Nippon Animation", "Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho Hyaku", "Mob Psycho 100 III", "Mob Psycho 100 3rd Season"], "top_ids": [7374, 37510, 50172]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "只有我不存在的城市", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4571.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "erased", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2719.1, "error": null, "top_titles": ["Boku dake ga Inai Machi", "Boku dake ga Inai Machi Recaps"], "top_ids": [31043, 35815]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "모브사이코100", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3298.3, "error": null, "top_titles": ["100%", "A Hundred Percents", "Nippon Animation", "Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho Hyaku", "Mob Psycho 100 III", "Mob Psycho 100 3rd Season"], "top_ids": [7374, 37510, 50172]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "노라가미", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6490.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "モブサイコ100", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 5828.6, "error": null, "top_titles": ["Mob Psycho 100", "Mob Psycho Hyaku", "Mob Psycho One Hundred", "Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho 100 III", "Mob Psycho 100 Season 3", "Mob Psycho 3rd Season"], "top_ids": ["11578", "41071", "45338"]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "進撃の巨人 The Final Season", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3310.3, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season", "Shingeki no Kyojin: The Final Season Specials", "Shingeki no Kyojin: The Final Season Part 2"], "top_ids": [40028, 49627, 48583]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Mob Psycho 100", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2487.5, "error": null, "top_titles": ["Mob Psycho 100", "Mob Psycho Hyaku", "Mob Psycho One Hundred", "Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho 100 III", "Mob Psycho 100 3rd Season"], "top_ids": [32182, 37510, 50172]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "もぶさいこ100", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3447.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Noragami", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 3, "duration_ms": 3501.3, "error": null, "top_titles": ["Noragami Aragoto", "Kotaro Tamura", "Deko Akao", "Noragami", "Adachitoka", "Hideki Yamazaki"], "top_ids": ["16906", "15837", "15585"]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "进击的巨人 最终季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4280.8, "error": null, "top_titles": ["Zui Ke Ai De Ren (Movie)", "Zui Ke Ai De Ren", "Zhu Xian: Zuizhong Ji"], "top_ids": [51640, 45116, 62990]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "灵能百分百", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2054.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "mob psycho 100", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3623.5, "error": null, "top_titles": ["Mob Psycho 100", "Mob Psycho Hyaku", "Mob Psycho One Hundred", "Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho 100 III", "Mob Psycho 100 3rd Season"], "top_ids": [32182, 37510, 50172]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "進擊的巨人 最終季", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 2618.7, "error": null, "top_titles": ["Shingeki no Kyojin", "Zui Ke Ai De Ren", "Zui Ke Ai De Ren (Movie)"], "top_ids": [16498, 45116, 51640]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "noragami", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 3, "duration_ms": 4151.5, "error": null, "top_titles": ["Noragami Aragoto", "Kotaro Tamura", "Deko Akao", "Noragami", "Adachitoka", "Hideki Yamazaki"], "top_ids": ["16906", "15837", "15585"]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "靈能百分百", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2975.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "나만이 없는 거리", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13801.5, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ノラガミ", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 2709.7, "error": null, "top_titles": ["Noragami", "ノラガミ", "Avex Entertainment", "Noragami Aragoto", "ノラガミ ARAGOTO", "Dentsu", "Noragami OVA", "Noragami OAD"], "top_ids": [20507, 30503, 20767]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "僕だけがいない街", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3814.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "路人超能100", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4549.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "只有我不存在的城市", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3007.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "のらがみ", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5309.4, "error": null, "top_titles": ["Sokushi Cheat ga Saikyou sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga.", "The other world doesn't stand a chance against the power of instant death", "即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。", "Given: Uragawa no Sonzai", "Given OVA", "Given OAD", "Ichiendama no Tabigarasu", "Minna no Uta"], "top_ids": [53730, 49053, 36395]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "進擊的巨人Final Season", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 9488.6, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season", "Shingeki no Kyojin: The Final Season Specials", "Shingeki no Kyojin: The Final Season Part 2"], "top_ids": [40028, 49627, 48583]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "모브사이코100", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4607.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "进击的巨人Final Season", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3753.6, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season", "Shingeki no Kyojin: The Final Season Specials", "Shingeki no Kyojin: The Final Season Part 2"], "top_ids": [40028, 49627, 48583]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "野良神", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5617.4, "error": null, "top_titles": ["Wo Bushi Xi Shen", "I Am Not the God of Drama", "我不是戏神", "Yuanshen☆FES 2026 Huodong PV", "原神☆FES 2026 活动PV", "Genshin Impact☆FES 2026 Event PV", "Kami no Shizuku", "Les Gouttes de Dieu"], "top_ids": [63984, 62997, 62981]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Erased", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13227.7, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Mob Psycho 100", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 5386.8, "error": null, "top_titles": ["Mob Psycho 100", "Mob Psycho Hyaku", "Mob Psycho One Hundred", "Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho 100 III", "Mob Psycho 100 Season 3", "Mob Psycho 3rd Season"], "top_ids": ["11578", "41071", "45338"]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "只有我不存在的城市", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8677.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "流浪神差", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3476.0, "error": null, "top_titles": ["Qing Jiao Wo Gui Chai Daren", "请叫我诡差大人", "Call Me Lord Eerie Bailiff", "Queen's Blade: Rurou no Senshi", "Queen's Blade", "Sentou Kyoukain Alain", "Rurouni Kenshin Special", "Rurouni Kenshin Episode 95: End of Wanderings"], "top_ids": [62744, 4719, 12067]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "나만이 없는 거리", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2457.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "진격의 거인 더 파이널 시즌", "hit": true, "position": 2, "kind": "title_substring", "n_returned": 10, "duration_ms": 4950.3, "error": null, "top_titles": ["Mabeob Chunjamun Season 2", "The Angler", "Spookiz 4th Season"], "top_ids": [39686, 51750, 54059]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "流浪神差", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2545.3, "error": null, "top_titles": ["Qing Jiao Wo Gui Chai Daren", "请叫我诡差大人", "Call Me Lord Eerie Bailiff", "Queen's Blade: Rurou no Senshi", "Queen's Blade", "Sentou Kyoukain Alain", "Rurouni Kenshin Special", "Rurouni Kenshin Episode 95: End of Wanderings"], "top_ids": [62744, 4719, 12067]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Attack on Titan: Final Season", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2725.1, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season", "Shingeki no Kyojin: The Final Season - Kanketsu-hen", "Shingeki no Kyojin: The Final Season Part 2"], "top_ids": [40028, 51535, 48583]} +{"sample_index": 25, "mal_id": 32182, "popularity": 27, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "mob psycho 100", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 3788.7, "error": null, "top_titles": ["Mob Psycho 100", "Mob Psycho Hyaku", "Mob Psycho One Hundred", "Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho 100 III", "Mob Psycho 100 Season 3", "Mob Psycho 3rd Season"], "top_ids": ["11578", "41071", "45338"]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "erased", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 7186.3, "error": null, "top_titles": ["Boku dake ga Inai Machi", "ERASED", "僕だけがいない街"], "top_ids": [21234]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "노라가미", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3076.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ノラガミ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2497.4, "error": null, "top_titles": ["Noragami", "Stray God", "Noragami Aragoto", "Noragami Aragoto OVA", "Noragami Aragoto OAD"], "top_ids": ["7881", "10800", "11243"]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Erased", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 5986.1, "error": null, "top_titles": ["ERASED", "Tomohiko Ito", "Taku Kishimoto"], "top_ids": ["17217"]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "進撃の巨人 The Final Season", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 2258.4, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season", "Attack on Titan Final Season", "進撃の巨人 The Final Season", "Shingeki no Kyojin: The Final Season Part 2", "Attack on Titan Final Season Part 2", "進撃の巨人 The Final Season Part 2", "Shingeki no Kyojin: The Final Season - Kanketsu-hen Kouhen", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2"], "top_ids": [110277, 131681, 162314]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan final season", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2652.9, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season - Kanketsu-hen", "Shingeki no Kyojin: The Final Season", "Shingeki no Kyojin: The Final Season Part 2"], "top_ids": [51535, 40028, 48583]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "进击的巨人 最终季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2491.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Noragami", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5454.0, "error": null, "top_titles": ["Noragami", "ノラガミ", "Avex Entertainment", "Noragami OVA", "Noragami OAD", "ノラガミ OAD", "Noragami Aragoto", "ノラガミ ARAGOTO"], "top_ids": [20507, 20767, 30503]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "erased", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3886.0, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "進擊的巨人 最終季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2449.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "進擊的巨人Final Season", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2271.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "アカメが斬る!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5208.0, "error": null, "top_titles": ["Akame ga Kill!", "Akame ga Kill! Recap", "Mangirl!: Asobu Henshuu Girl"], "top_ids": [22199, 26449, 17351]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "en", "backend": "jikan", "variant": "enhance_romaji_to_katakana", "query": "ノラガミ", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 4945.9, "error": null, "top_titles": ["Noragami", "ノラガミ", "Avex Entertainment", "Noragami Aragoto", "ノラガミ ARAGOTO", "Dentsu", "Noragami OVA", "Noragami OAD"], "top_ids": [20507, 30503, 20767]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "進撃の巨人 The Final Season", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5784.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "进击的巨人Final Season", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3193.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "斬!赤紅之瞳", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3346.8, "error": null, "top_titles": ["Akadou Suzunosuke", "Long Zu II: Daowangzhe Zhi Tong", "Tianwai Fuxing: Chi Jian Chuanqi"], "top_ids": [11275, 59662, 45971]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "noragami", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2750.9, "error": null, "top_titles": ["Noragami", "ノラガミ", "Avex Entertainment", "Noragami OVA", "Noragami OAD", "ノラガミ OAD", "Noragami Aragoto", "ノラガミ ARAGOTO"], "top_ids": [20507, 20767, 30503]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "进击的巨人 最终季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3123.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "斩!赤红之瞳", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2362.6, "error": null, "top_titles": ["Zhan Shou Zhi Ren", "Akadou Suzunosuke", "Ruyi Tu: Hong Jing Shi"], "top_ids": [38557, 11275, 45434]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "진격의 거인 더 파이널 시즌", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3447.6, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season", "Attack on Titan Final Season", "進撃の巨人 The Final Season"], "top_ids": [110277]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "のらがみ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 16476.0, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "斬!赤紅之瞳", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2651.2, "error": null, "top_titles": ["Akadou Suzunosuke", "Long Zu II: Daowangzhe Zhi Tong", "Tianwai Fuxing: Chi Jian Chuanqi"], "top_ids": [11275, 59662, 45971]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "僕だけがいない街", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5059.4, "error": null, "top_titles": ["Boku dake ga Inai Machi", "The Town Where Only I am Missing", "BokuMachi", "Boku dake ga Inai Machi Recaps", "Boku dake ga Inai Machi Episode 6.5", "Boku dake ga Inai Machi Episode 11.5", "Boku dake no Hentai Kanojo The Animation", "僕だけのヘンタイカノジョ THE ANIMATION"], "top_ids": [31043, 35815, 35781]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Attack on Titan: Final Season", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 3033.0, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season", "Attack on Titan Final Season", "進撃の巨人 The Final Season", "Shingeki no Kyojin: Chimi Kyara Gekijou - Final", "Attack On Titan: The Final Season Specials", "「進撃の巨人」ちみキャラ劇場 \"ファイナル\"", "Shingeki no Kyojin: The Final Season - Kanketsu-hen Zenpen", "Attack on Titan Final Season THE FINAL CHAPTERS Special 1"], "top_ids": [110277, 139754, 146984]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "斩!赤红之瞳", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2478.6, "error": null, "top_titles": ["Zhan Shou Zhi Ren", "Akadou Suzunosuke", "Ruyi Tu: Hong Jing Shi"], "top_ids": [38557, 11275, 45434]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "只有我不存在的城市", "hit": false, "position": null, "kind": "", "n_returned": 9, "duration_ms": 2959.9, "error": null, "top_titles": ["Chengshi Jiyi Wo Men de Jieri", "城市记忆我们的节日", "Kids", "Shi Er Shengxiao: Chengshi Yingxiong", "十二生肖城市英雄", "Adventure", "Chengshi Huanxiang Qu", "城市幻想曲"], "top_ids": [48085, 44866, 55896]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "進擊的巨人Final Season", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9477.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "只有我不存在的城市", "hit": false, "position": null, "kind": "", "n_returned": 9, "duration_ms": 3585.0, "error": null, "top_titles": ["Chengshi Jiyi Wo Men de Jieri", "城市记忆我们的节日", "Kids", "Shi Er Shengxiao: Chengshi Yingxiong", "十二生肖城市英雄", "Adventure", "Chengshi Huanxiang Qu", "城市幻想曲"], "top_ids": [48085, 44866, 55896]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "진격의 거인 더 파이널 시즌", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2293.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan final season", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 2383.3, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season", "Attack on Titan Final Season", "進撃の巨人 The Final Season", "Shingeki no Kyojin: The Final Season Part 2", "Attack on Titan Final Season Part 2", "進撃の巨人 The Final Season Part 2", "Shingeki no Kyojin: The Final Season - Kanketsu-hen Kouhen", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2"], "top_ids": [110277, 131681, 162314]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "나만이 없는 거리", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 3515.8, "error": null, "top_titles": ["Geori-eui Mubeopja", "Street Fighter", "거리의 무법자"], "top_ids": [30042]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Attack on Titan: Final Season", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2525.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "아카메가 벤다!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 10507.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "アカメが斬る!", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 4065.6, "error": null, "top_titles": ["Akame ga Kill!", "アカメが斬る!"], "top_ids": [20613]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "野良神", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13304.4, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "斬!赤紅之瞳", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3427.1, "error": null, "top_titles": ["Akame ga Kill!", "アカメが斬る!"], "top_ids": [20613]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Erased", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 7468.0, "error": null, "top_titles": ["Boku dake ga Inai Machi", "The Town Where Only I am Missing", "BokuMachi", "Boku dake ga Inai Machi Recaps", "Boku dake ga Inai Machi Episode 6.5", "Boku dake ga Inai Machi Episode 11.5", "Eraser Wars", "ERASER WARS"], "top_ids": [31043, 35815, 55188]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Akame ga Kill!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4853.9, "error": null, "top_titles": ["Akame ga Kill!", "AkaKill! Gekijou", "Akame ga Kill! Recap"], "top_ids": [22199, 25241, 26449]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "流浪神差", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4824.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "斩!赤红之瞳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3488.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan final season", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6353.7, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "流浪神差", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3286.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "노라가미", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1833.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "アカメが斬る!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3542.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "斬!赤紅之瞳", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 5263.6, "error": null, "top_titles": ["Akame ga Kill!", "アカメが斬る!"], "top_ids": [20613]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "斬!赤紅之瞳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1882.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "akame ga kill", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3347.5, "error": null, "top_titles": ["Akame ga Kill!", "AkaKill! Gekijou", "Akame ga Kill! Recap"], "top_ids": [22199, 25241, 26449]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "斩!赤红之瞳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3679.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "暗殺教室", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2605.3, "error": null, "top_titles": ["Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu 2nd Season"], "top_ids": [19759, 24833, 30654]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Noragami", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 6189.1, "error": null, "top_titles": ["Noragami", "Stray God", "Noragami Aragoto", "Noragami Aragoto OVA", "Noragami Aragoto OAD"], "top_ids": ["7881", "10800", "11243"]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "斬!赤紅之瞳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2951.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "erased", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 12323.4, "error": null, "top_titles": ["Boku dake ga Inai Machi", "The Town Where Only I am Missing", "BokuMachi", "Boku dake ga Inai Machi Recaps", "Boku dake ga Inai Machi Episode 6.5", "Boku dake ga Inai Machi Episode 11.5", "Eraser Wars", "ERASER WARS"], "top_ids": [31043, 35815, 55188]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "아카메가 벤다!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3273.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "暗杀教室", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3390.9, "error": null, "top_titles": ["Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu 2nd Season"], "top_ids": [19759, 24833, 30654]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "進撃の巨人 The Final Season", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2837.1, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season", "Shingeki no Kyojin Season 4", "Attack on Titan Season 4", "Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin: The Final Season - Kanketsu-hen", "Shingeki no Kyojin: The Final Season Part 3"], "top_ids": [40028, 48583, 51535]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "暗殺教室", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 1912.5, "error": null, "top_titles": ["Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu 2nd Season"], "top_ids": [19759, 24833, 30654]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "아카메가 벤다!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5592.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "进击的巨人 最终季", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 10, "duration_ms": 3196.1, "error": null, "top_titles": ["Jinji de Ji Jia: Sheng Jie Fei Tuo", "进击的机甲之圣戒飞陀", "Mecha", "Zhu Xian: Zuizhong Ji", "诛仙 第四季", "Zhu Xian 4th Season"], "top_ids": [47063, 62990, 62990]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "en", "backend": "kitsu", "variant": "enhance_romaji_to_katakana", "query": "ノラガミ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 7934.9, "error": null, "top_titles": ["Noragami", "Stray God", "Noragami Aragoto", "Noragami Aragoto OVA", "Noragami Aragoto OAD"], "top_ids": ["7881", "10800", "11243"]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "進擊的巨人 最終季", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 10, "duration_ms": 3248.4, "error": null, "top_titles": ["Xin Baoxiao Xiaoyuan", "新爆笑校园 第一季", "Funny School", "Zhu Xian: Zuizhong Ji", "诛仙 第四季", "Zhu Xian 4th Season"], "top_ids": [63094, 62990, 62990]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Akame ga Kill!", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 7385.5, "error": null, "top_titles": ["Akame ga Kill!", "アカメが斬る!", "Akame ga Kill! Gekijou", "AkaKill! Theater", "アカ斬る!劇場"], "top_ids": [20613, 20775]} +{"sample_index": 26, "mal_id": 20507, "popularity": 28, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "noragami", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 3724.7, "error": null, "top_titles": ["Noragami", "Stray God", "Noragami Aragoto", "Noragami Aragoto OVA", "Noragami Aragoto OAD"], "top_ids": ["7881", "10800", "11243"]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Akame ga Kill!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 7175.8, "error": null, "top_titles": ["Akame ga KILL!", "Tomoki Kobayashi", "Makoto Uezu"], "top_ids": ["15919"]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "進擊的巨人Final Season", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4107.7, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season", "Shingeki no Kyojin Season 4", "Attack on Titan Season 4", "Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin: The Final Season - Kanketsu-hen", "Shingeki no Kyojin: The Final Season Part 3"], "top_ids": [40028, 48583, 51535]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "暗杀教室", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 11328.8, "error": null, "top_titles": ["Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu 2nd Season"], "top_ids": [19759, 24833, 30654]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "僕だけがいない街", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 4942.8, "error": null, "top_titles": ["Boku dake ga Inai Machi", "The Town Where Only I am Missing", "BokuMachi", "Boku dake ga Inai Machi Recaps", "Boku dake ga Inai Machi Episode 6.5", "ERASED 1-6 Digest"], "top_ids": ["11110", "41416"]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "akame ga kill", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3370.4, "error": null, "top_titles": ["Akame ga Kill!", "アカメが斬る!", "Akame ga Kill! Gekijou", "AkaKill! Theater", "アカ斬る!劇場"], "top_ids": [20613, 20775]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "进击的巨人Final Season", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 3136.1, "error": null, "top_titles": ["Jinji de Ji Jia: Sheng Jie Fei Tuo", "进击的机甲之圣戒飞陀", "Mecha", "Shingeki no Kyojin: The Final Season", "Shingeki no Kyojin Season 4", "Attack on Titan Season 4", "Shingeki no Kyojin: The Final Season Part 2"], "top_ids": [47063, 40028, 48583]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "akame ga kill", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3137.9, "error": null, "top_titles": ["Akame ga KILL!", "Tomoki Kobayashi", "Makoto Uezu"], "top_ids": ["15919"]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "암살교실", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5746.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "只有我不存在的城市", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5811.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "暗殺教室", "hit": true, "position": 1, "kind": "id", "n_returned": 7, "duration_ms": 6422.7, "error": null, "top_titles": ["Ansatsu Kyoushitsu: Jump Festa 2013 Special", "暗殺教室", "Ansatsu Kyoushitsu", "Assassination Classroom", "Ansatsu Kyoushitsu 2nd Season", "Assassination Classroom Second Season", "暗殺教室 第2期"], "top_ids": [19759, 20755, 21170]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "진격의 거인 더 파이널 시즌", "hit": true, "position": 8, "kind": "title_substring", "n_returned": 10, "duration_ms": 7091.2, "error": null, "top_titles": ["Tobot: Daedosiui Yeongungdeul Season 3 Part 2", "또봇 : 대도시의 영웅들 시즌3 파트 2", "Sci-Fi", "Tobot: Daedosiui Yeongungdeul Season 3", "또봇 : 대도시의 영웅들 시즌3", "Tobot: Daedosiui Yeongungdeul Season 2 Part 3", "또봇 : 대도시의 영웅들 시즌2 파트 3"], "top_ids": [62456, 62455, 62454]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Assassination Classroom", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2997.8, "error": null, "top_titles": ["Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu: Deai no Jikan"], "top_ids": [19759, 24833, 28405]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "暗殺教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5090.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "只有我不存在的城市", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3202.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "assassination classroom", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 1907.3, "error": null, "top_titles": ["Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu: Deai no Jikan"], "top_ids": [19759, 24833, 28405]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "暗殺教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4936.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "암살교실", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3744.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "七つの大罪", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7093.1, "error": null, "top_titles": ["Nanatsu no Taizai", "Nanatsu no Taizai OVA", "Nanatsu no Taizai: Tsumi no Kokuhaku Dennou Grimoire!"], "top_ids": [23755, 30347, 36569]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Attack on Titan: Final Season", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 11839.9, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season", "Shingeki no Kyojin Season 4", "Attack on Titan Season 4", "Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin: The Final Season - Kanketsu-hen", "Shingeki no Kyojin: The Final Season Part 3"], "top_ids": [40028, 48583, 51535]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "ja", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "暗杀教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13293.8, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "나만이 없는 거리", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12806.5, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "七大罪", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 2716.4, "error": null, "top_titles": ["Trinity Seven: Nanatsu no Taizai to Nana Madoushi", "Nanatsu no Taizai: Tsumi no Kokuhaku Dennou Grimoire!", "Nanatsu no Taizai"], "top_ids": [28285, 36569, 23755]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "七大罪", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 2160.6, "error": null, "top_titles": ["Trinity Seven: Nanatsu no Taizai to Nana Madoushi", "Nanatsu no Taizai: Tsumi no Kokuhaku Dennou Grimoire!", "Nanatsu no Taizai"], "top_ids": [28285, 36569, 23755]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "暗殺教室", "hit": true, "position": 1, "kind": "id", "n_returned": 7, "duration_ms": 4287.7, "error": null, "top_titles": ["Ansatsu Kyoushitsu: Jump Festa 2013 Special", "暗殺教室", "Ansatsu Kyoushitsu", "Assassination Classroom", "Ansatsu Kyoushitsu 2nd Season", "Assassination Classroom Second Season", "暗殺教室 第2期"], "top_ids": [19759, 20755, 21170]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Assassination Classroom", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 3, "duration_ms": 7594.8, "error": null, "top_titles": ["Assassination Classroom the Movie: 365 Days' Time", "Seiji Kishi", "Makoto Uezu", "Assassination Classroom"], "top_ids": ["18752", "17686", "16142"]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "暗杀教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2467.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan final season", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3054.5, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season", "Shingeki no Kyojin Season 4", "Attack on Titan Season 4", "Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin: The Final Season - Kanketsu-hen", "Shingeki no Kyojin: The Final Season Part 3"], "top_ids": [40028, 48583, 51535]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Erased", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6405.4, "error": null, "top_titles": ["Boku dake ga Inai Machi", "The Town Where Only I am Missing", "BokuMachi", "Boku dake ga Inai Machi Recaps", "Boku dake ga Inai Machi Episode 6.5", "ERASED 1-6 Digest", "No Guns Life"], "top_ids": ["11110", "41416", "42197"]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "일곱 개의 대죄", "hit": true, "position": 2, "kind": "title_substring", "n_returned": 4, "duration_ms": 4413.2, "error": null, "top_titles": ["Du Gaeui Bang", "Ar:pieL - 6-seosgae-ui Unmyeong", "Robot Taekwon V wa Hwanggeum Nalgae"], "top_ids": [60341, 34779, 16490]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "암살교실", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2122.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Assassination Classroom", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 1897.1, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "Assassination Classroom", "暗殺教室", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu 2nd Season", "Assassination Classroom Second Season", "暗殺教室 第2期"], "top_ids": [20755, 19759, 21170]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "The Seven Deadly Sins", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2452.1, "error": null, "top_titles": ["Nanatsu no Taizai", "Trinity Seven: Nanatsu no Taizai to Nana Madoushi", "Nanatsu no Taizai Movie 1: Tenkuu no Torawarebito"], "top_ids": [23755, 28285, 35946]} +{"sample_index": 27, "mal_id": 31043, "popularity": 29, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "erased", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4708.4, "error": null, "top_titles": ["Boku dake ga Inai Machi", "The Town Where Only I am Missing", "BokuMachi", "Boku dake ga Inai Machi Recaps", "Boku dake ga Inai Machi Episode 6.5", "ERASED 1-6 Digest", "No Guns Life"], "top_ids": ["11110", "41416", "42197"]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "アカメが斬る!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7794.6, "error": null, "top_titles": ["Akame ga Kill!", "Akame ga Kiru!", "アカメが斬る!", "Akame ga Kill! Recap", "Akame ga Kill! Digest Recap", "Akame ga Kill! Episode 8.5", "Uza Kawaikute Nani ga Warui!", "ウザ可愛くて何が悪い!"], "top_ids": [22199, 26449, 63474]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "進撃の巨人 The Final Season", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 3268.4, "error": null, "top_titles": ["Attack on Titan: The Final Season", "Shingeki no Kyojin Season 4", "Attack on Titan Season 4", "Attack on Titan: The Final Season Part 2", "Shingeki no Kyojin Season 4 Part 2", "Attack on Titan Season 4 Part 2", "Attack on Titan: The Final Season - Final Chapters Part 1", "Shingeki no Kyojin: The Final Season Final Edition"], "top_ids": ["42422", "44240", "46038"]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "进击的巨人 最终季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3031.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "斬!赤紅之瞳", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4916.9, "error": null, "top_titles": ["Meitantei Conan Movie 04: Hitomi no Naka no Ansatsusha", "Detective Conan Movie 04: Captured in Her Eyes", "瞳の中の暗殺者", "Sora wo Miageru Shoujo no Hitomi ni Utsuru Sekai", "Munto TV", "空を見上げる少女の瞳に映る世界", "Onigiri", "Demon Cutter"], "top_ids": [1363, 5702, 32606]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "assassination classroom", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 5580.3, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "Assassination Classroom", "暗殺教室", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu 2nd Season", "Assassination Classroom Second Season", "暗殺教室 第2期"], "top_ids": [20755, 19759, 21170]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "assassination classroom", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 3, "duration_ms": 11676.9, "error": null, "top_titles": ["Assassination Classroom the Movie: 365 Days' Time", "Seiji Kishi", "Makoto Uezu", "Assassination Classroom"], "top_ids": ["18752", "17686", "16142"]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "the seven deadly sins", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2854.5, "error": null, "top_titles": ["Nanatsu no Taizai", "Trinity Seven: Nanatsu no Taizai to Nana Madoushi", "Nanatsu no Taizai Movie 1: Tenkuu no Torawarebito"], "top_ids": [23755, 28285, 35946]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "進擊的巨人 最終季", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 3235.1, "error": null, "top_titles": ["Saishuu Heiki Kanojo", "SaiKano", "Saishuuheiki Kanojo: The Last Love Song on This Little Planet", "Saishuu Heiki Kanojo: Another Love Song", "Saishuuheiki Kanojo OVA", "Saikano OVA", "Magia Record: Mahou Shoujo Madoka☆Magica Gaiden 2nd Season - Kakusei Zenya Recap"], "top_ids": ["488", "564", "50136"]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "斩!赤红之瞳", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3572.9, "error": null, "top_titles": ["Yi Zhan Cangqiong", "一斩苍穹", "GuAn", "Zhan Shen Movie: Cang Nan Zhi Shang", "斩神剧场版 沧南之殇", "Slay the Gods Movie: The Dead of Cangnan", "Zhan Shen: Fanchen Shenyu II", "Zhan Shen: Fanchen Shenyu 2nd Season"], "top_ids": [62789, 62727, 62234]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "BLEACH - ブリーチ -", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2719.9, "error": null, "top_titles": ["Bleach", "Bleach 20th PV", "Bleach Movie 4: Jigoku-hen"], "top_ids": [269, 60048, 8247]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "進擊的巨人Final Season", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2382.5, "error": null, "top_titles": ["Steven Universe Season 2", "Steven Universe Second Season", "Steven Universe 2nd Season", "Steven Universe Season 5", "Steven Universe Fifth Season", "Steven Universe 5th Season", "Steven Universe Season 4", "Steven Universe 4th Season"], "top_ids": ["13413", "13423", "13417"]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "斬!赤紅之瞳", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2764.5, "error": null, "top_titles": ["Meitantei Conan Movie 04: Hitomi no Naka no Ansatsusha", "Detective Conan Movie 04: Captured in Her Eyes", "瞳の中の暗殺者", "Sora wo Miageru Shoujo no Hitomi ni Utsuru Sekai", "Munto TV", "空を見上げる少女の瞳に映る世界", "Onigiri", "Demon Cutter"], "top_ids": [1363, 5702, 32606]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "BLEACH - ぶりーち -", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2237.9, "error": null, "top_titles": ["Bucchigiri?! Yomigaeru! Konya wa Bucchii Back to the Chuuka!", "Inemuri Buu-chan", "Chichibu de Buchichi"], "top_ids": [58226, 32227, 37174]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "七つの大罪", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5411.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "进击的巨人Final Season", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 1982.3, "error": null, "top_titles": ["Steven Universe Season 2", "Steven Universe Second Season", "Steven Universe 2nd Season", "Steven Universe Season 5", "Steven Universe Fifth Season", "Steven Universe 5th Season", "Steven Universe Season 4", "Steven Universe 4th Season"], "top_ids": ["13413", "13423", "13417"]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "死神", "hit": true, "position": 3, "kind": "title_substring", "n_returned": 10, "duration_ms": 2186.7, "error": null, "top_titles": ["Shinigami Bocchan to Kuro Maid 2nd Season", "Shinigami Bocchan to Kuro Maid", "Shinigami Bocchan to Kuro Maid 3rd Season"], "top_ids": [49858, 47257, 56738]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "BLEACH 漂靈", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2865.3, "error": null, "top_titles": ["Bleach", "Hyohakusha", "Bleach 20th PV"], "top_ids": [269, 53337, 60048]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "七つの大罪", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12284.7, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "진격의 거인 더 파이널 시즌", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 5787.8, "error": null, "top_titles": ["DinoCore Season 2", "DinoCore Season 3", "Turning Mecard W Season 2", "Turning Mecard Wing Season 2", "터닝메카드 Wing 시즌2"], "top_ids": ["48803", "48804", "40585"]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "七大罪", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6807.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "BLEACH 漂灵", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 2442.3, "error": null, "top_titles": ["Mu Qi Ling: Lu Ying Zhan Ling", "Mu Qi Ling 3: Qi Ling Zhi Xin", "Mu Qi Ling 2: Sheng Tian Ling Zhong"], "top_ids": [44470, 44472, 44471]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Attack on Titan: Final Season", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3973.6, "error": null, "top_titles": ["Attack on Titan: The Final Season - Final Chapters Part 1", "Shingeki no Kyojin: The Final Season Final Edition", "Shingeki no Kyojin: The Final Season Part 3", "Attack on Titan: The Final Season - Final Chapters Part 2", "Attack on Titan Season 4 Part 4, Attack on Titan Season 4 - Final Edition (Part 2), Attack on Titan: The Final Season - Final Edition (Part 2)", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2", "Shingeki no Kyojin: The Final Season Specials"], "top_ids": ["46038", "47132", "45959"]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "BLEACH 死神", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 3253.6, "error": null, "top_titles": ["Bleach: Shuku! Rukia Dakkan! Kagayaku! Shinigami Juuban Shoubu! Mitai Shinigami Doon to Misemasu Special", "Duel Masters LOST: Gekka no Shinigami", "Shinigami Bocchan to Kuro Maid 2nd Season"], "top_ids": [54171, 59458, 49858]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "七大罪", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4052.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "斩!赤红之瞳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12220.3, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "七大罪", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7450.7, "error": null, "top_titles": ["Nanatsu no Taizai", "The Seven Deadly Sins", "七つの大罪", "Nanatsu no Taizai: Funnu no Shinpan", "The Seven Deadly Sins: Dragon's Judgement", "七つの大罪 憤怒の審判", "sin: Nanatsu no Taizai", "Seven Mortal Sins"], "top_ids": [20789, 116752, 20705]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "블리치", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3082.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "일곱 개의 대죄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4282.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "아카메가 벤다!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3954.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "七大罪", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3046.5, "error": null, "top_titles": ["Nanatsu no Taizai", "The Seven Deadly Sins", "七つの大罪", "Nanatsu no Taizai: Funnu no Shinpan", "The Seven Deadly Sins: Dragon's Judgement", "七つの大罪 憤怒の審判", "sin: Nanatsu no Taizai", "Seven Mortal Sins"], "top_ids": [20789, 116752, 20705]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Bleach", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2657.3, "error": null, "top_titles": ["Bleach", "Bleach Movie 1: Memories of Nobody", "Bleach Movie 4: Jigoku-hen"], "top_ids": [269, 1686, 8247]} +{"sample_index": 28, "mal_id": 40028, "popularity": 30, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan final season", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2709.4, "error": null, "top_titles": ["Attack on Titan: The Final Season - Final Chapters Part 1", "Shingeki no Kyojin: The Final Season Final Edition", "Shingeki no Kyojin: The Final Season Part 3", "Attack on Titan: The Final Season - Final Chapters Part 2", "Attack on Titan Season 4 Part 4, Attack on Titan Season 4 - Final Edition (Part 2), Attack on Titan: The Final Season - Final Edition (Part 2)", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2", "Shingeki no Kyojin: The Final Season Specials"], "top_ids": ["46038", "47132", "45959"]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "アカメが斬る!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 1755.0, "error": null, "top_titles": ["Akame ga Kill!", "Akame ga Kiru!", "Akame ga Kill! Theater", "Akame ga Kill! Gekijou"], "top_ids": ["8270", "8579"]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "일곱 개의 대죄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3127.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "The Seven Deadly Sins", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6229.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "The Seven Deadly Sins", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2652.6, "error": null, "top_titles": ["Nanatsu no Taizai", "The Seven Deadly Sins", "七つの大罪", "Hawk no Onayami Soudanshitsu", "ホークのお悩み相談室", "Nanatsu no Taizai OVA", "The Seven Deadly Sins OVA", "七つの大罪 OAD"], "top_ids": [20789, 154174, 21104]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Akame ga Kill!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6144.7, "error": null, "top_titles": ["Akame ga Kill!", "Akame ga Kiru!", "アカメが斬る!", "Akame ga Kill! Recap", "Akame ga Kill! Digest Recap", "Akame ga Kill! Episode 8.5", "AkaKill! Gekijou", "Akame ga Kill! Theater"], "top_ids": [22199, 26449, 25241]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "斬!赤紅之瞳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5619.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "斩!赤红之瞳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3844.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "akame ga kill", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3631.4, "error": null, "top_titles": ["Akame ga Kill!", "Akame ga Kiru!", "アカメが斬る!", "Akame ga Kill! Recap", "Akame ga Kill! Digest Recap", "Akame ga Kill! Episode 8.5", "AkaKill! Gekijou", "Akame ga Kill! Theater"], "top_ids": [22199, 26449, 25241]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "bleach", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 12863.3, "error": null, "top_titles": ["Bleach", "Bleach Movie 1: Memories of Nobody", "Bleach Movie 4: Jigoku-hen"], "top_ids": [269, 1686, 8247]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "斬!赤紅之瞳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3579.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "Angel Beats!(エンジェルビーツ!)", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4294.7, "error": null, "top_titles": ["Angel Beats!", "Angel Beats! Specials", "Angel Beats! Another Epilogue"], "top_ids": [6547, 9062, 10067]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "斩!赤红之瞳", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2593.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "the seven deadly sins", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2046.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "the seven deadly sins", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 1838.8, "error": null, "top_titles": ["Nanatsu no Taizai", "The Seven Deadly Sins", "七つの大罪", "Hawk no Onayami Soudanshitsu", "ホークのお悩み相談室", "Nanatsu no Taizai OVA", "The Seven Deadly Sins OVA", "七つの大罪 OAD"], "top_ids": [20789, 154174, 21104]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "暗殺教室", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7259.3, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "暗殺教室", "Assassination Classroom", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special", "Ansatsu Kyoushitsu 2nd Season", "Ansatsu Kyoushitsu Season 2", "Ansatsu Kyoushitsu Final Season"], "top_ids": [24833, 19759, 30654]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "아카메가 벤다!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2956.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "BLEACH - ブリーチ -", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3005.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "BLEACH - ブリーチ -", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3428.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "ja", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "暗杀教室", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 2961.5, "error": null, "top_titles": ["Jingai Kyoushitsu no Ningengirai Kyoushi", "Misanthropic Teacher in Demi-Human Classroom.", "人外教室の人間嫌い教師", "Kuroneko to Majo no Kyoushitsu", "黒猫と魔女の教室", "The Classroom of a Black Cat and a Witch", "Ansatsu Kyoushitsu", "暗殺教室"], "top_ids": [62432, 62171, 24833]} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Akame ga Kill!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 2340.2, "error": null, "top_titles": ["Akame ga Kill!", "Akame ga Kiru!", "Akame ga Kill! Theater", "Akame ga Kill! Gekijou", "Akame ga Kill! Recap", "Akame ga Kill! Digest Recap", "Akame ga Kill! Episode 8.5"], "top_ids": ["8270", "8579", "8949"]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "BLEACH - ぶりーち -", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4326.8, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "暗殺教室", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4810.2, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "暗殺教室", "Assassination Classroom", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special", "Ansatsu Kyoushitsu 2nd Season", "Ansatsu Kyoushitsu Season 2", "Ansatsu Kyoushitsu Final Season"], "top_ids": [24833, 19759, 30654]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "Angel Beats!(えんじぇるびーつ!)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12250.8, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 29, "mal_id": 22199, "popularity": 31, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "akame ga kill", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 2632.9, "error": null, "top_titles": ["Akame ga Kill!", "Akame ga Kiru!", "Akame ga Kill! Theater", "Akame ga Kill! Gekijou", "Akame ga Kill! Recap", "Akame ga Kill! Digest Recap", "Akame ga Kill! Episode 8.5"], "top_ids": ["8270", "8579", "8949"]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "暗杀教室", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 3151.0, "error": null, "top_titles": ["Jingai Kyoushitsu no Ningengirai Kyoushi", "Misanthropic Teacher in Demi-Human Classroom.", "人外教室の人間嫌い教師", "Kuroneko to Majo no Kyoushitsu", "黒猫と魔女の教室", "The Classroom of a Black Cat and a Witch", "Ansatsu Kyoushitsu", "暗殺教室"], "top_ids": [62432, 62171, 24833]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "暗殺教室", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 2974.9, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special", "Assassination Classroom", "Ansatsu Kyoushitsu: Deai no Jikan", "Ansatsu Kyoushitsu (TV) Episode 0: Deai no Jikan"], "top_ids": ["8640", "7973", "10020"]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "BLEACH - ぶりーち -", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12278.4, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "暗杀教室", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 3141.6, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu: Deai no Jikan", "Assassination Classroom", "Ansatsu Kyoushitsu (TV) Episode 0: Deai no Jikan", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special"], "top_ids": ["8640", "10020", "7973"]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "암살교실", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5099.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "死神", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 11984.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "死神", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 2425.8, "error": null, "top_titles": ["Duel Masters LOST: Gekka no Shinigami", "Duel Masters LOST ~月下の死神~", "Shinigami Bocchan to Kuro Maid", "The Duke of Death and His Maid", "死神坊ちゃんと黒メイド", "Shinigami Bocchan to Kuro Maid 2nd Season", "The Duke of Death and His Maid Season 2", "死神坊ちゃんと黒メイド 第2期"], "top_ids": [187507, 129277, 139435]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "Angel Beats!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 8621.6, "error": null, "top_titles": ["Angel Beats!", "Angel Beats! Another Epilogue", "Angel Beats! Specials"], "top_ids": [6547, 10067, 9062]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Assassination Classroom", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2491.8, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "暗殺教室", "Assassination Classroom", "Ansatsu Kyoushitsu: Deai no Jikan", "Ansatsu Kyoushitsu Episode 0: Deai no Jikan", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special"], "top_ids": [24833, 28405, 19759]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "暗殺教室", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 3288.7, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special", "Assassination Classroom", "Ansatsu Kyoushitsu: Deai no Jikan", "Ansatsu Kyoushitsu (TV) Episode 0: Deai no Jikan"], "top_ids": ["8640", "7973", "10020"]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "BLEACH 漂靈", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3460.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "BLEACH 漂靈", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6561.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "BLEACH 漂灵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3469.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "assassination classroom", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7019.9, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "暗殺教室", "Assassination Classroom", "Ansatsu Kyoushitsu: Deai no Jikan", "Ansatsu Kyoushitsu Episode 0: Deai no Jikan", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special"], "top_ids": [24833, 28405, 19759]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "angel beats", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 6324.3, "error": null, "top_titles": ["Angel Beats! Another Epilogue", "Angel Beats!", "Angel Beats! Specials"], "top_ids": [10067, 6547, 9062]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "BLEACH 死神", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2485.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "Angel Beats!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2327.0, "error": null, "top_titles": ["Angel Beats!", "Angel Beats! Another Epilogue", "Angel Beats! Specials"], "top_ids": [6547, 10067, 9062]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "블리치", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2539.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "暗杀教室", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 13684.4, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu: Deai no Jikan", "Assassination Classroom", "Ansatsu Kyoushitsu (TV) Episode 0: Deai no Jikan", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special"], "top_ids": ["8640", "10020", "7973"]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "BLEACH 死神", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 11807.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Bleach", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 1904.4, "error": null, "top_titles": ["BLEACH", "Bleach", "BLEACH: Sennen Kessen-hen - Soukoku-tan", "BLEACH: Thousand-Year Blood War - The Conflict", "BLEACH 千年血戦篇-相剋譚-", "BLEACH: Sennen Kessen-hen", "BLEACH: Thousand-Year Blood War", "BLEACH 千年血戦篇"], "top_ids": [269, 169755, 116674]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "블리치", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1889.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "암살교실", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2593.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Assassination Classroom", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 2500.6, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu: Deai no Jikan", "Assassination Classroom", "Ansatsu Kyoushitsu (TV) Episode 0: Deai no Jikan", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special"], "top_ids": ["8640", "10020", "7973"]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "angel beats", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 5405.0, "error": null, "top_titles": ["Angel Beats! Another Epilogue", "Angel Beats!", "Angel Beats! Specials"], "top_ids": [10067, 6547, 9062]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "七つの大罪", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 12249.1, "error": null, "top_titles": ["Nanatsu no Taizai", "七つの大罪", "The Seven Deadly Sins", "Nanatsu no Taizai OVA", "Nanatsu no Taizai: Ban no Bangai-hen", "The Seven Deadly Sins: Ban's Side Story", "Nanatsu no Taizai: Imashime no Fukkatsu", "Seven Deadly Sins Season 2"], "top_ids": [23755, 30347, 34577]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "엔젤비츠", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3377.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Angel Beats!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3237.6, "error": null, "top_titles": ["Angel Beats!", "Angel Beats! Another Epilogue", "Angel Beats! Specials"], "top_ids": [6547, 10067, 9062]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "七大罪", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 6423.1, "error": null, "top_titles": ["Trinity Seven: Nanatsu no Taizai to Nana Madoushi", "Trinity Seven (2015)", "Trinity Seven: The Seven Deadly Sins and The Seven Mages", "Ryuugajou Nanana no Maizoukin", "龍ヶ嬢七々々の埋蔵金", "Nanana's Buried Treasure", "Cike Wu Liuqi", "伍六七"], "top_ids": [28285, 21561, 38409]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Bleach", "hit": true, "position": 10, "kind": "title_exact", "n_returned": 11, "duration_ms": 12297.5, "error": null, "top_titles": ["Bleach: Thousand-Year Blood War - The Calamity", "Tomohisa Taguchi", "Hikaru Murata", "Bleach: Thousand-Year Blood War Part 3 - The Conflict", "Bleach: Thousand-Year Blood War - The Separation", "Masaki Hiramatsu"], "top_ids": ["34242", "30131", "26771"]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "bleach", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 14981.8, "error": null, "top_titles": ["BLEACH", "Bleach", "BLEACH: Sennen Kessen-hen - Soukoku-tan", "BLEACH: Thousand-Year Blood War - The Conflict", "BLEACH 千年血戦篇-相剋譚-", "BLEACH: Sennen Kessen-hen", "BLEACH: Thousand-Year Blood War", "BLEACH 千年血戦篇"], "top_ids": [269, 169755, 116674]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "bleach", "hit": true, "position": 10, "kind": "title_exact", "n_returned": 11, "duration_ms": 5038.5, "error": null, "top_titles": ["Bleach: Thousand-Year Blood War - The Calamity", "Tomohisa Taguchi", "Hikaru Murata", "Bleach: Thousand-Year Blood War Part 3 - The Conflict", "Bleach: Thousand-Year Blood War - The Separation", "Masaki Hiramatsu"], "top_ids": ["34242", "30131", "26771"]} +{"sample_index": 30, "mal_id": 24833, "popularity": 32, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "assassination classroom", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 4013.3, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu: Deai no Jikan", "Assassination Classroom", "Ansatsu Kyoushitsu (TV) Episode 0: Deai no Jikan", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special"], "top_ids": ["8640", "10020", "7973"]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "Angel Beats!(エンジェルビーツ!)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6726.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "Angel Beats!(エンジェルビーツ!)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4753.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "Angel Beats!(えんじぇるびーつ!)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2507.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "Angel Beats!(えんじぇるびーつ!)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2193.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "七つの大罪", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4892.5, "error": null, "top_titles": ["Nanatsu no Taizai", "Nanatsu no Taizai: Imashime no Fukkatsu", "The Seven Deadly Sins 2nd Season", "Nanatsu no Taizai 2nd Season", "Nanatsu no Taizai OVA", "Nanatsu no Taizai: Ban no Bangai-hen", "The Seven Deadly Sins: Ban's Side Story"], "top_ids": ["8699", "12633", "10751"]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "七大罪", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13356.8, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "angel beats", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3076.8, "error": null, "top_titles": ["Angel Beats! Another Epilogue", "Angel Beats!", "Angel Beats! Specials"], "top_ids": [10067, 6547, 9062]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "Angel Beats!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 5332.4, "error": null, "top_titles": ["Angel Beats!", "Seiji Kishi", "Jun Maeda"], "top_ids": ["10885"]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "Angel Beats!", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 6257.0, "error": null, "top_titles": ["Angel Beats!", "Angel Beats! Specials", "エンジェルビーツ 特別篇", "Angel Beats!: Another Epilogue", "エンジェルビーツ! アナザーエピローグ"], "top_ids": [6547, 9062, 10067]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "七大罪", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5385.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "일곱 개의 대죄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5418.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ハイキュー!!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3495.1, "error": null, "top_titles": ["Haikyuu!!", "Haikyuu!! (OVA)", "Haikyuu!! Second Season"], "top_ids": [20583, 40372, 28891]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "七大罪", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4211.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "はいきゅー!!", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2886.1, "error": null, "top_titles": ["Ryuuutto Kite Kyuuu!!!", "Atsumare! Kakkoii 1-nensei Power!: Korasho Kyuushutsu Daisakusen", "Carole & Tuesday Specials"], "top_ids": [53075, 54425, 40013]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "angel beats", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 3760.2, "error": null, "top_titles": ["Angel Beats!", "Angel Beats! Specials", "エンジェルビーツ 特別篇", "Angel Beats!: Another Epilogue", "エンジェルビーツ! アナザーエピローグ"], "top_ids": [6547, 9062, 10067]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "일곱 개의 대죄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3505.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "The Seven Deadly Sins", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3437.8, "error": null, "top_titles": ["Nanatsu no Taizai", "Nanatsu no Taizai: Imashime no Fukkatsu", "The Seven Deadly Sins 2nd Season", "Nanatsu no Taizai 2nd Season", "Nanatsu no Taizai Movie: Tenkuu no Torawarebito"], "top_ids": ["8699", "12633", "13647"]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "angel beats", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3474.6, "error": null, "top_titles": ["Angel Beats!", "Seiji Kishi", "Jun Maeda"], "top_ids": ["10885"]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "The Seven Deadly Sins", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 12787.6, "error": null, "top_titles": ["Nanatsu no Taizai", "七つの大罪", "The Seven Deadly Sins", "Nanatsu no Taizai: Imashime no Fukkatsu", "Seven Deadly Sins Season 2", "七つの大罪 戒めの復活", "Trinity Seven: Nanatsu no Taizai to Nana Madoushi", "Trinity Seven (2015)"], "top_ids": [23755, 34577, 28285]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "Angel Beats!", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 7789.4, "error": null, "top_titles": ["Angel Beats!", "Angel Beats! Specials", "エンジェルビーツ 特別篇", "Angel Beats!: Another Epilogue", "エンジェルビーツ! アナザーエピローグ"], "top_ids": [6547, 9062, 10067]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "the seven deadly sins", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2035.3, "error": null, "top_titles": ["Nanatsu no Taizai", "Nanatsu no Taizai: Imashime no Fukkatsu", "The Seven Deadly Sins 2nd Season", "Nanatsu no Taizai 2nd Season", "Nanatsu no Taizai Movie: Tenkuu no Torawarebito"], "top_ids": ["8699", "12633", "13647"]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "Angel Beats!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 4838.8, "error": null, "top_titles": ["Angel Beats!", "Seiji Kishi", "Jun Maeda"], "top_ids": ["10885"]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "排球少年!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14326.9, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "BLEACH - ブリーチ -", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3200.2, "error": null, "top_titles": ["BLEACH", "Bleach: Memories in the Rain", "Bleach: Jump Festa 2004", "ブリーチ Memories in the Rain", "BLEACH 20th PV", "BLEACH 𝟐𝟎𝐭𝐡 𝐀𝐧𝐧𝐢𝐯𝐞𝐫𝐬𝐚𝐫𝐲", "BLEACH 20周年 PV"], "top_ids": ["244", "684", "49262"]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_tw", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "angel beats", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3417.0, "error": null, "top_titles": ["Angel Beats!", "Seiji Kishi", "Jun Maeda"], "top_ids": ["10885"]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "排球少年!!", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5780.2, "error": null, "top_titles": ["Chikyuugai Shounen Shoujo", "Hitomi no Naka no Shounen: Juugo Shounen Hyouryuuki", "Merc Storia: Mukiryoku no Shounen to Bin no Naka no Shoujo"], "top_ids": [37914, 9095, 37232]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "angel beats", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 3120.0, "error": null, "top_titles": ["Angel Beats!", "Angel Beats! Specials", "エンジェルビーツ 特別篇", "Angel Beats!: Another Epilogue", "エンジェルビーツ! アナザーエピローグ"], "top_ids": [6547, 9062, 10067]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "排球少年!!", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3802.1, "error": null, "top_titles": ["Chikyuugai Shounen Shoujo", "Hitomi no Naka no Shounen: Juugo Shounen Hyouryuuki", "Merc Storia: Mukiryoku no Shounen to Bin no Naka no Shoujo"], "top_ids": [37914, 9095, 37232]} +{"sample_index": 31, "mal_id": 23755, "popularity": 33, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "the seven deadly sins", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3301.6, "error": null, "top_titles": ["Nanatsu no Taizai", "七つの大罪", "The Seven Deadly Sins", "Nanatsu no Taizai: Imashime no Fukkatsu", "Seven Deadly Sins Season 2", "七つの大罪 戒めの復活", "Trinity Seven: Nanatsu no Taizai to Nana Madoushi", "Trinity Seven (2015)"], "top_ids": [23755, 34577, 28285]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "하이큐!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3782.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "엔젤비츠", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3840.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "BLEACH - ブリーチ -", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4556.0, "error": null, "top_titles": ["Bleach", "BLEACH - ブリーチ -", "TV Tokyo", "Bleach: Memories in the Rain", "Bleach: Jump Festa 2004", "ブリーチ Memories in the Rain", "Bleach: Sennen Kessen-hen", "Bleach: Thousand-Year Blood War Arc"], "top_ids": [269, 762, 41467]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "BLEACH - ぶりーち -", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14237.2, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Angel Beats!", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2035.8, "error": null, "top_titles": ["Angel Beats!", "Angel Beats! Specials", "エンジェルビーツ 特別篇", "Angel Beats!: Another Epilogue", "エンジェルビーツ! アナザーエピローグ"], "top_ids": [6547, 9062, 10067]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Haikyu!!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2798.0, "error": null, "top_titles": ["Haikyuu!!", "Haikyuu!! Second Season", "Haikyuu!! Lev Genzan!"], "top_ids": [20583, 28891, 25303]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "엔젤비츠", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 11952.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "BLEACH - ぶりーち -", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2918.2, "error": null, "top_titles": ["Final Approach", "φなる・あぷろーち", "Trinet Entertainment", "Baka Dakedo Chinchin Shaburu no dake wa Jouzu na Chii-chan♡", "バカだけどチンチンしゃぶるのだけはじょうずなちーちゃん♡", "Lune-Pictures", "Chii-chan Kaihatsu Nikki", "Chii-chan's Development Diary"], "top_ids": [119, 35028, 40520]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "死神", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 2796.0, "error": null, "top_titles": ["Shinigami Bocchan to Kuro Maid", "Young Master the Grim Reaper and the Black Maid", "Shinigami Bocchan to Kuro Maid Season 2", "Shinigami Bocchan to Kuro Maid 3rd Season"], "top_ids": ["44035", "45229", "47984"]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "BLEACH 漂靈", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3483.0, "error": null, "top_titles": ["BLEACH", "Bleach Movie 1: Memories of Nobody", "Bleach Movie 2: The DiamondDust Rebellion - Mou Hitotsu no Hyourinmaru"], "top_ids": ["244", "1515", "2623"]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "en", "backend": "shikimori", "variant": "enhance_romaji_to_katakana", "query": "ハイキュ!!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3384.2, "error": null, "top_titles": ["Haikyuu!!", "Haikyuu!! (OVA)", "Haikyuu!! Quest Picture Drama"], "top_ids": [20583, 40372, 31675]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "死神", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 6, "duration_ms": 4818.5, "error": null, "top_titles": ["Shinigami Bocchan to Kuro Maid", "Young Master the Grim Reaper and the Black Maid", "死神坊ちゃんと黒メイド", "Shinigami Bocchan to Kuro Maid 2nd Season", "The Duke of Death and His Maid Season 2", "Shinigami Bocchan to Kuro Maid 3rd Season", "死神坊ちゃんと黒メイド 第3期", "The Duke of Death and His Maid Season 3"], "top_ids": [47257, 49858, 56738]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "BLEACH 漂靈", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3230.6, "error": null, "top_titles": ["Bleach", "BLEACH - ブリーチ -", "TV Tokyo", "Bleach: Sennen Kessen-hen", "Bleach: Thousand-Year Blood War Arc", "BLEACH 千年血戦篇", "Bleach: Sennen Kessen-hen - Ketsubetsu-tan", "Bleach: Thousand-Year Blood War Arc Part 2"], "top_ids": [269, 41467, 53998]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "haikyu", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4485.6, "error": null, "top_titles": ["Haikyuu!!", "Haikyuu!! Second Season", "Haikyuu!! Lev Genzan!"], "top_ids": [20583, 28891, 25303]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "BLEACH 漂灵", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4087.4, "error": null, "top_titles": ["Bleach", "BLEACH - ブリーチ -", "TV Tokyo", "Bleach: Sennen Kessen-hen", "Bleach: Thousand-Year Blood War Arc", "BLEACH 千年血戦篇", "Bleach: Sennen Kessen-hen - Ketsubetsu-tan", "Bleach: Thousand-Year Blood War Arc Part 2"], "top_ids": [269, 41467, 53998]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "BLEACH 漂灵", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 11309.4, "error": null, "top_titles": ["BLEACH", "Bleach Movie 1: Memories of Nobody", "Bleach Movie 2: The DiamondDust Rebellion - Mou Hitotsu no Hyourinmaru"], "top_ids": ["244", "1515", "2623"]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Angel Beats!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 15600.5, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "BLEACH 死神", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 4255.3, "error": null, "top_titles": ["Bleach: Shuku! Rukia Dakkan! Kagayaku! Shinigami Juuban Shoubu! Mitai Shinigami Doon to Misemasu Special", "BLEACH 祝!ルキア奪還!輝け!死神十番勝負!見たい死神ドーンと見せますスペシャル", "Bleach: Gathering! Rukia's Rescue! Shining! The Ultimate Shinigami Showdown! Special Showing of the Shinigami Teams!", "Bleach", "BLEACH - ブリーチ -", "TV Tokyo", "Bleach: Sennen Kessen-hen", "Bleach: Thousand-Year Blood War Arc"], "top_ids": [54171, 269, 41467]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "angel beats", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 15268.3, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "블리치", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3473.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "約束のネバーランド", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12268.7, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ハイキュー!!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4635.0, "error": null, "top_titles": ["Haikyuu!!", "HAIKYU!!", "ハイキュー!!", "Haikyuu!!: Shousha to Haisha", "Haikyuu!! the Movie: The Winner and the Loser", "ハイキュー!! 勝者と敗者", "Haikyuu!!: VS Akaten", "HAIKYU!!: VS Failing Marks"], "top_ids": [20464, 21244, 21348]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "約定的夢幻島", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3096.5, "error": null, "top_titles": ["New Dream Hunter Rem: Setsuriku no Mudenmekyu", "Yueding", "Genmukan"], "top_ids": [5584, 55634, 2590]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "はいきゅー!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4041.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "约定的梦幻岛", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2723.2, "error": null, "top_titles": ["Fangkemeng: Bu Yuan Zhi Dao de Fangxing Baokemeng?!", "Ali Meng Zhi Dao: Wo de Yun", "Xing Qia Meng Shao Nu 2: Menghuan Jingling"], "top_ids": [54648, 44729, 60890]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "BLEACH 死神", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12250.7, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "排球少年!!", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 3373.7, "error": null, "top_titles": ["Haikyuu!!", "HAIKYU!!", "ハイキュー!!", "Haikyuu!! TO THE TOP", "HAIKYU!! TO THE TOP", "ハイキュー!! TO THE TOP", "Haikyuu!! TO THE TOP 2", "HAIKYU!! TO THE TOP Part 2"], "top_ids": [20464, 106625, 113538]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "블리치", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2218.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "約定的夢幻島", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3065.1, "error": null, "top_titles": ["New Dream Hunter Rem: Setsuriku no Mudenmekyu", "Yueding", "Genmukan"], "top_ids": [5584, 55634, 2590]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Bleach", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12275.8, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "排球少年!!", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 3577.4, "error": null, "top_titles": ["Haikyuu!!", "HAIKYU!!", "ハイキュー!!", "Haikyuu!! TO THE TOP", "HAIKYU!! TO THE TOP", "ハイキュー!! TO THE TOP", "Haikyuu!! TO THE TOP 2", "HAIKYU!! TO THE TOP Part 2"], "top_ids": [20464, 106625, 113538]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Bleach", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3803.7, "error": null, "top_titles": ["BLEACH", "Bleach Movie 1: Memories of Nobody", "Bleach Movie 2: The DiamondDust Rebellion - Mou Hitotsu no Hyourinmaru"], "top_ids": ["244", "1515", "2623"]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "约定的梦幻岛", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4202.0, "error": null, "top_titles": ["Fangkemeng: Bu Yuan Zhi Dao de Fangxing Baokemeng?!", "Ali Meng Zhi Dao: Wo de Yun", "Xing Qia Meng Shao Nu 2: Menghuan Jingling"], "top_ids": [54648, 44729, 60890]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "排球少年!!", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 2172.4, "error": null, "top_titles": ["Haikyuu!!", "HAIKYU!!", "ハイキュー!!", "Haikyuu!! TO THE TOP", "HAIKYU!! TO THE TOP", "ハイキュー!! TO THE TOP", "Haikyuu!! TO THE TOP 2", "HAIKYU!! TO THE TOP Part 2"], "top_ids": [20464, 106625, 113538]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "약속의 네버랜드", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2005.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "The Promised Neverland", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2413.8, "error": null, "top_titles": ["Yakusoku no Neverland", "Yakusoku no Neverland: Michishirube", "Yakusoku no Neverland 2nd Season"], "top_ids": [37779, 47616, 39617]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "the promised neverland", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3100.0, "error": null, "top_titles": ["Yakusoku no Neverland", "Yakusoku no Neverland: Michishirube", "Yakusoku no Neverland 2nd Season"], "top_ids": [37779, 47616, 39617]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "bleach", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12242.9, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "angel beats", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13352.8, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "하이큐!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12185.5, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "この素晴らしい世界に祝福を!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4975.5, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo!", "Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!"], "top_ids": [30831, 34626, 32380]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ハイキュー!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3150.9, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Haikyu!!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2090.8, "error": null, "top_titles": ["Haikyuu!!", "HAIKYU!!", "ハイキュー!!", "Haikyuu!!: Karasuno Koukou VS Shiratorizawa Gakuen Koukou", "HAIKYU!! 3rd Season", "ハイキュー!! 烏野高校 VS 白鳥沢学園高校", "Haikyuu!! TO THE TOP", "HAIKYU!! TO THE TOP"], "top_ids": [20464, 21698, 106625]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "Angel Beats!(エンジェルビーツ!)", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4924.3, "error": null, "top_titles": ["Angel Beats!", "Angel Beats!(エンジェルビーツ!)", "Aniplex", "Angel Beats! Specials", "Angel Beats!: Stairway to Heaven", "Angel Beats!: Hell's Kitchen", "Angel Beats! Another Epilogue", "エンジェルビーツ! アナザーエピローグ"], "top_ids": [6547, 9062, 10067]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "为美好的世界献上祝福!", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 2416.5, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!", "Shujia Shang De Qimiao Shijie"], "top_ids": [34626, 32380, 45983]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "Angel Beats!(えんじぇるびーつ!)", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4589.3, "error": null, "top_titles": ["Angel Beats!", "Angel Beats!(エンジェルビーツ!)", "Aniplex", "Angel Beats! Specials", "Angel Beats!: Stairway to Heaven", "Angel Beats!: Hell's Kitchen", "Angel Beats! Another Epilogue", "エンジェルビーツ! アナザーエピローグ"], "top_ids": [6547, 9062, 10067]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "爲美好的世界獻上祝福!", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 4338.7, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!", "Shujia Shang De Qimiao Shijie"], "top_ids": [34626, 32380, 45983]} +{"sample_index": 32, "mal_id": 269, "popularity": 34, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "bleach", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 22024.0, "error": null, "top_titles": ["BLEACH", "Bleach Movie 1: Memories of Nobody", "Bleach Movie 2: The DiamondDust Rebellion - Mou Hitotsu no Hyourinmaru"], "top_ids": ["244", "1515", "2623"]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "はいきゅー!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8963.6, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "為美好的世界獻上祝福!", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 5345.0, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!", "Shujia Shang De Qimiao Shijie"], "top_ids": [34626, 32380, 45983]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "en", "backend": "anilist", "variant": "enhance_romaji_to_katakana", "query": "ハイキュ!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 10324.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "排球少年!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6019.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "为美好的世界献上祝福!", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 1474.3, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!", "Shujia Shang De Qimiao Shijie"], "top_ids": [34626, 32380, 45983]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "haikyu", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2621.3, "error": null, "top_titles": ["Haikyuu!!", "HAIKYU!!", "ハイキュー!!", "Haikyuu Quest", "Haikyuu!! Quest Picture Drama", "ハイキュークエスト", "Haikyuu!!: Karasuno Koukou VS Shiratorizawa Gakuen Koukou", "HAIKYU!! 3rd Season"], "top_ids": [20464, 107263, 21698]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "코노스바", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3188.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "排球少年!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3602.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "Angel Beats!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13191.2, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "Angel Beats!(エンジェルビーツ!)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12184.4, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "KonoSuba: God's Blessing on This Wonderful World!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2088.8, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo!", "Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!", "Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!"], "top_ids": [30831, 32380, 34626]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "約束のネバーランド", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 4898.8, "error": null, "top_titles": ["Yakusoku no Neverland", "The Promised Neverland", "約束のネバーランド", "Yakusoku no Neverland 2", "The Promised Neverland Season 2", "約束のネバーランド2"], "top_ids": [101759, 108725]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "排球少年!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5028.4, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "konosuba god s blessing on this wonderful world", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 10, "duration_ms": 3599.8, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!", "Kono Subarashii Sekai ni Shukufuku wo! 2"], "top_ids": [34626, 32380, 32937]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "約定的夢幻島", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2782.9, "error": null, "top_titles": ["Yakusoku no Neverland", "The Promised Neverland", "約束のネバーランド", "Yakusoku no Neverland 2", "The Promised Neverland Season 2", "約束のネバーランド2"], "top_ids": [101759, 108725]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "angel beats", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4349.8, "error": null, "top_titles": ["Angel Beats!", "Angel Beats!(エンジェルビーツ!)", "Aniplex", "Angel Beats! Specials", "Angel Beats!: Stairway to Heaven", "Angel Beats!: Hell's Kitchen", "Angel Beats! Another Epilogue", "エンジェルビーツ! アナザーエピローグ"], "top_ids": [6547, 9062, 10067]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "未来日記", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3394.6, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki", "Mirai Nikki (TV): Ura Mirai Nikki"], "top_ids": [10620, 8460, 12503]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "约定的梦幻岛", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 4787.6, "error": null, "top_titles": ["Yakusoku no Neverland", "The Promised Neverland", "約束のネバーランド"], "top_ids": [101759]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "未来日记", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2068.4, "error": null, "top_titles": ["Mirai Nikki (TV): Ura Mirai Nikki", "Mirai Nikki (TV)", "Mirai Nikki"], "top_ids": [12503, 10620, 8460]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "하이큐!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6599.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "Angel Beats!(えんじぇるびーつ!)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12379.8, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "Angel Beats!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 3392.2, "error": null, "top_titles": ["Angel Beats!", "Angel Beats! Specials", "Angel Beats!: Stairway to Heaven", "Angel Beats!: Hell's Kitchen", "Angel Beats!: Another Epilogue"], "top_ids": ["4604", "5591", "6019"]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "未來日記", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 7469.9, "error": null, "top_titles": ["Mirai Nikki (TV): Ura Mirai Nikki", "Mirai Nikki (TV)", "Mirai Nikki"], "top_ids": [12503, 10620, 8460]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "Angel Beats!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12232.2, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "未来日记", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2964.1, "error": null, "top_titles": ["Mirai Nikki (TV): Ura Mirai Nikki", "Mirai Nikki (TV)", "Mirai Nikki"], "top_ids": [12503, 10620, 8460]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "angel beats", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2632.9, "error": null, "top_titles": ["Angel Beats!", "Angel Beats! Specials", "Angel Beats!: Stairway to Heaven", "Angel Beats!: Hell's Kitchen", "Angel Beats!: Another Epilogue"], "top_ids": ["4604", "5591", "6019"]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "約定的夢幻島", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12290.3, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "Angel Beats!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2716.8, "error": null, "top_titles": ["Angel Beats!", "Angel Beats! Specials", "Angel Beats!: Stairway to Heaven", "Angel Beats!: Hell's Kitchen", "Angel Beats!: Another Epilogue"], "top_ids": ["4604", "5591", "6019"]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Haikyu!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13662.3, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "未來日記", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 4292.2, "error": null, "top_titles": ["Mirai Nikki (TV): Ura Mirai Nikki", "Mirai Nikki (TV)", "Mirai Nikki"], "top_ids": [12503, 10620, 8460]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "未來日記", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 1317.3, "error": null, "top_titles": ["Mirai Nikki (TV): Ura Mirai Nikki", "Mirai Nikki (TV)", "Mirai Nikki"], "top_ids": [12503, 10620, 8460]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "angel beats", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3042.2, "error": null, "top_titles": ["Angel Beats!", "Angel Beats!(エンジェルビーツ!)", "Aniplex", "Angel Beats! Specials", "Angel Beats!: Stairway to Heaven", "Angel Beats!: Hell's Kitchen", "Angel Beats! Another Epilogue", "エンジェルビーツ! アナザーエピローグ"], "top_ids": [6547, 9062, 10067]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "约定的梦幻岛", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 5350.3, "error": null, "top_titles": ["Yakusoku no Neverland", "The Promised Neverland", "約束のネバーランド"], "top_ids": [101759]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "未来日记", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 1745.1, "error": null, "top_titles": ["Mirai Nikki (TV): Ura Mirai Nikki", "Mirai Nikki (TV)", "Mirai Nikki"], "top_ids": [12503, 10620, 8460]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "엔젤비츠", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2574.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "약속의 네버랜드", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5639.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Angel Beats!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4384.3, "error": null, "top_titles": ["Angel Beats!", "Angel Beats!(エンジェルビーツ!)", "Aniplex", "Angel Beats! Specials", "Angel Beats!: Stairway to Heaven", "Angel Beats!: Hell's Kitchen", "Angel Beats! Another Epilogue", "エンジェルビーツ! アナザーエピローグ"], "top_ids": [6547, 9062, 10067]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "未來日記", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 5558.5, "error": null, "top_titles": ["Mirai Nikki (TV): Ura Mirai Nikki", "Mirai Nikki (TV)", "Mirai Nikki"], "top_ids": [12503, 10620, 8460]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "angel beats", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2670.9, "error": null, "top_titles": ["Angel Beats!", "Angel Beats! Specials", "Angel Beats!: Stairway to Heaven", "Angel Beats!: Hell's Kitchen", "Angel Beats!: Another Epilogue"], "top_ids": ["4604", "5591", "6019"]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "The Promised Neverland", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3012.1, "error": null, "top_titles": ["Yakusoku no Neverland", "The Promised Neverland", "約束のネバーランド", "Yakusoku no Neverland 2", "The Promised Neverland Season 2", "約束のネバーランド2"], "top_ids": [101759, 108725]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "엔젤비츠", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3455.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "angel beats", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2303.4, "error": null, "top_titles": ["Angel Beats!", "Angel Beats!(エンジェルビーツ!)", "Aniplex", "Angel Beats! Specials", "Angel Beats!: Stairway to Heaven", "Angel Beats!: Hell's Kitchen", "Angel Beats! Another Epilogue", "エンジェルビーツ! アナザーエピローグ"], "top_ids": [6547, 9062, 10067]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Angel Beats!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2379.0, "error": null, "top_titles": ["Angel Beats!", "Angel Beats! Specials", "Angel Beats!: Stairway to Heaven", "Angel Beats!: Hell's Kitchen", "Angel Beats!: Another Epilogue"], "top_ids": ["4604", "5591", "6019"]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ハイキュー!!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3777.5, "error": null, "top_titles": ["Haikyuu!!", "High Kyuu!!", "HQ!!", "Haikyuu!! (OVA)", "Haikyuu!! Puppet Animation", "Haikyuu!! Stop-motion Animation", "Haikyuu!! Second Season", "ハイキュー!! セカンドシーズン"], "top_ids": [20583, 40372, 28891]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "the promised neverland", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3662.3, "error": null, "top_titles": ["Yakusoku no Neverland", "The Promised Neverland", "約束のネバーランド", "Yakusoku no Neverland 2", "The Promised Neverland Season 2", "約束のネバーランド2"], "top_ids": [101759, 108725]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "未来日记", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12247.0, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "はいきゅー!!", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4777.3, "error": null, "top_titles": ["Aisanai to Iwaremashitemo: Moto Maou no Hakushaku Reijou wa Kimajime Gunjin ni Ezuke wo Sarete Shiawase ni Naru", "Dinners with My Darling: How the Former Monster King Ate Her Way to Happiness", "愛さないといわれましても ~元魔王の伯爵令嬢は生真面目軍人に餌付けをされて幸せになる~", "Heart Mark Oome", "はーとまーく多め.", "Lune-Pictures", "Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta 2nd Season", "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~ 第2期"], "top_ids": [64091, 63846, 63822]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "この素晴らしい世界に祝福を!", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 3125.0, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo!", "KONOSUBA -God's blessing on this wonderful world!", "この素晴らしい世界に祝福を!", "Kono Subarashii Sekai ni Shukufuku wo! 4", "この素晴らしい世界に祝福を!4", "Kono Subarashii Sekai ni Shukufuku wo! 2", "KONOSUBA -God's blessing on this wonderful world! 2", "この素晴らしい世界に祝福を!2"], "top_ids": [21202, 187924, 21699]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "为美好的世界献上祝福!", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3406.2, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo!", "KONOSUBA -God's blessing on this wonderful world!", "この素晴らしい世界に祝福を!", "Kono Subarashii Sekai ni Shukufuku wo! 2", "KONOSUBA -God's blessing on this wonderful world! 2", "この素晴らしい世界に祝福を!2"], "top_ids": [21202, 21699]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "排球少年!!", "hit": true, "position": 6, "kind": "title_substring", "n_returned": 10, "duration_ms": 5187.7, "error": null, "top_titles": ["Shounen Ashibe: Go! Go! Goma-chan", "Young Ashibe: Go! Go! Goma-chan", "少年アシベ GO!GO!ゴマちゃん", "Shounen Ashibe: Go! Go! Goma-chan 2", "Young Ashibe: Go! Go! Goma-chan 2", "Dorami-chan: Arara Shounen Sanzokudan", "ドラミちゃん アララ・少年山賊団!", "Dorami-chan: Wow, The Kid Gang of Bandits"], "top_ids": [32571, 34979, 2636]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "미래일기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7166.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "排球少年!!", "hit": true, "position": 6, "kind": "title_substring", "n_returned": 10, "duration_ms": 2526.2, "error": null, "top_titles": ["Shounen Ashibe: Go! Go! Goma-chan", "Young Ashibe: Go! Go! Goma-chan", "少年アシベ GO!GO!ゴマちゃん", "Shounen Ashibe: Go! Go! Goma-chan 2", "Young Ashibe: Go! Go! Goma-chan 2", "Dorami-chan: Arara Shounen Sanzokudan", "ドラミちゃん アララ・少年山賊団!", "Dorami-chan: Wow, The Kid Gang of Bandits"], "top_ids": [32571, 34979, 2636]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "The Future Diary", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2432.7, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki (TV): Ura Mirai Nikki", "Mirai Nikki: Redial"], "top_ids": [10620, 12503, 16762]} +{"sample_index": 33, "mal_id": 6547, "popularity": 35, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "angel beats", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 14574.3, "error": null, "top_titles": ["Angel Beats!", "Angel Beats! Specials", "Angel Beats!: Stairway to Heaven", "Angel Beats!: Hell's Kitchen", "Angel Beats!: Another Epilogue"], "top_ids": ["4604", "5591", "6019"]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "haikyu", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13154.8, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "爲美好的世界獻上祝福!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7220.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "為美好的世界獻上祝福!", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 1756.0, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 3", "KONOSUBA -God's blessing on this wonderful world! 3", "この素晴らしい世界に祝福を!3"], "top_ids": [136804]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "the future diary", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4730.2, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki (TV): Ura Mirai Nikki", "Mirai Nikki: Redial"], "top_ids": [10620, 12503, 16762]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "为美好的世界献上祝福!", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3120.5, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo!", "KONOSUBA -God's blessing on this wonderful world!", "この素晴らしい世界に祝福を!", "Kono Subarashii Sekai ni Shukufuku wo! 2", "KONOSUBA -God's blessing on this wonderful world! 2", "この素晴らしい世界に祝福を!2"], "top_ids": [21202, 21699]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ハイキュー!!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7326.8, "error": null, "top_titles": ["Haikyuu!!", "High Kyuu!!", "HQ!!", "Haikyuu!! (OVA)", "Haikyuu!! Puppet Animation", "Haikyuu!! Stop-motion Animation", "Haikyuu!! Second Season"], "top_ids": ["8133", "42574", "10076"]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "코노스바", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1737.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "排球少年!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12342.4, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "はいきゅー!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2093.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ソードアート・オンライン II", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4648.8, "error": null, "top_titles": ["Sword Art Online II", "Sword Art Online II: Debriefing", "Sword Art Online Alternative: Gun Gale Online II"], "top_ids": [21881, 27891, 55994]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "하이큐!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2548.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "排球少年!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2351.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "排球少年!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1773.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "そーどあーと・おんらいん II", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2614.1, "error": null, "top_titles": ["Sword Art Online II: Sword Art Offline II", "Sword Art Online: Sword Art Offline", "Sword Art Online: Sword Art Offline - Extra Edition"], "top_ids": [28063, 16099, 21879]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "KonoSuba: God's Blessing on This Wonderful World!", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 5451.4, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo!", "KONOSUBA -God's blessing on this wonderful world!", "この素晴らしい世界に祝福を!", "Kono Subarashii Sekai ni Shukufuku wo! 4", "この素晴らしい世界に祝福を!4", "Kono Subarashii Sekai ni Shukufuku wo! 3", "KONOSUBA -God's blessing on this wonderful world! 3", "この素晴らしい世界に祝福を!3"], "top_ids": [21202, 187924, 136804]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Haikyu!!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4863.7, "error": null, "top_titles": ["Haikyuu!!", "High Kyuu!!", "HQ!!", "Haikyuu!! Second Season", "ハイキュー!! セカンドシーズン", "Haikyu!! 2nd Season", "Haikyuu!! Karasuno Koukou vs. Shiratorizawa Gakuen Koukou", "Haikyuu!! Third Season"], "top_ids": [20583, 28891, 32935]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "約束のネバーランド", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 15900.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "刀劍神域Ⅱ", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 2791.2, "error": null, "top_titles": ["Zhan Shen: Fanchen Shenyu II", "Shen Lan Qi Yu Wushuang Zhu: Hong Bao Pian", "Weiqi Shaonian 2"], "top_ids": [62234, 53367, 19839]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "konosuba god s blessing on this wonderful world", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3289.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "排球少年!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5487.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "未来日記", "hit": true, "position": 1, "kind": "id", "n_returned": 4, "duration_ms": 2391.7, "error": null, "top_titles": ["Mirai Nikki OVA", "未来日記", "Mirai Nikki", "The Future Diary", "Mirai Nikki: Ura Mirai Nikki", "The Future Diary: Ura Mirai Nikki", "未来日記 裏未来日記"], "top_ids": [8460, 10620, 12503]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "하이큐!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2187.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ja", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "未来日记", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 1770.9, "error": null, "top_titles": ["Mirai Nikki", "The Future Diary", "未来日記"], "top_ids": [10620]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "en", "backend": "jikan", "variant": "enhance_romaji_to_katakana", "query": "ハイキュ!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3054.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "haikyu", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4453.8, "error": null, "top_titles": ["Haikyuu!!", "High Kyuu!!", "HQ!!", "Haikyuu!! Second Season", "ハイキュー!! セカンドシーズン", "Haikyu!! 2nd Season", "Haikyuu!! Karasuno Koukou vs. Shiratorizawa Gakuen Koukou", "Haikyuu!! Third Season"], "top_ids": [20583, 28891, 32935]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Haikyu!!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7276.7, "error": null, "top_titles": ["Haikyuu!!", "High Kyuu!!", "HQ!!", "Haikyuu!! Second Season", "Haikyuu!!: Karasuno Koukou VS Shiratorizawa Gakuen Koukou", "Haikyuu!! Third Season"], "top_ids": ["8133", "10076", "11935"]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ja", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "未來日記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6860.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "約定的夢幻島", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13174.5, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "刀剑神域Ⅱ", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 14485.9, "error": null, "top_titles": ["Zhan Shen: Fanchen Shenyu II", "Shen Lan Qi Yu Wushuang Zhu: Hong Bao Pian", "He Wei Dao x Daojian Shenyu Alicization"], "top_ids": [62234, 53367, 42128]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "未来日记", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3398.8, "error": null, "top_titles": ["Mirai Nikki", "The Future Diary", "未来日記"], "top_ids": [10620]} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "en", "backend": "kitsu", "variant": "enhance_romaji_to_katakana", "query": "ハイキュ!!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2959.0, "error": null, "top_titles": ["Haikyuu!!", "High Kyuu!!", "HQ!!", "Haikyuu!! Second Season", "Haikyuu!!: Karasuno Koukou VS Shiratorizawa Gakuen Koukou", "Haikyuu!! Third Season"], "top_ids": ["8133", "10076", "11935"]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "約束のネバーランド", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 9541.1, "error": null, "top_titles": ["Yakusoku no Neverland", "約束のネバーランド", "The Promised Neverland", "Yakusoku no Neverland 2nd Season", "The Promised Neverland Season 2", "Yakusoku no Neverland: Michishirube", "The Promised Neverland Recap", "Yakusoku no Neverland Recap"], "top_ids": [37779, 39617, 47616]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "소드 아트 온라인 II", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 5515.1, "error": null, "top_titles": ["Weiqi Shaonian 2", "Ranma ½ (2024) 2nd Season", "D.C.II S.S.: Da Capo II Second Season"], "top_ids": [19839, 60564, 3627]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "未來日記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5132.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 34, "mal_id": 20583, "popularity": 36, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "haikyu", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4302.9, "error": null, "top_titles": ["Haikyuu!!", "High Kyuu!!", "HQ!!", "Haikyuu!! Second Season", "Haikyuu!!: Karasuno Koukou VS Shiratorizawa Gakuen Koukou", "Haikyuu!! Third Season"], "top_ids": ["8133", "10076", "11935"]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "約定的夢幻島", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 2795.5, "error": null, "top_titles": ["Yueding", "約定", "Promise", "Naruto Movie 3: Dai Koufun! Mikazuki-jima no Animal Panic Dattebayo!", "Naruto Movie Volume 3", "Naruto: Gekijouban Naruto: Dai Koufun! Mikazuki-jima no Animal Panic Datte ba yo!", "One Piece Movie 06: Omatsuri Danshaku to Himitsu no Shima", "ワンピース オマツリ男爵と秘密の島"], "top_ids": [55634, 2144, 464]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "未來日記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2541.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "約束のネバーランド", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 2951.7, "error": null, "top_titles": ["Yakusoku no Neverland", "Yakusoku no Neverland 2nd Season", "Yakusoku no Neverland 2nd Season: Tokubetsu-hen - Michishirube", "The Promised Neverland Recap", "Yakusoku no Neverland Recap"], "top_ids": ["41312", "42220", "44076"]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Sword Art Online II", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5590.9, "error": null, "top_titles": ["Sword Art Online II", "Sword Art Online II: Sword Art Offline II", "Sword Art Online Alternative: Gun Gale Online II"], "top_ids": [21881, 28063, 55994]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "未来日记", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2607.6, "error": null, "top_titles": ["Mirai Nikki", "The Future Diary", "未来日記"], "top_ids": [10620]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "約定的夢幻島", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3290.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "未來日記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3049.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "约定的梦幻岛", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6850.0, "error": null, "top_titles": ["Bao Ke Meng Donghua Tujian: Xiaoqi Dao Zhong", "Pokemon Animated Pokedex: Resting on the Island", "宝可梦动画图鉴 小憩岛中", "Wu Chuang Yinxing Dao", "误闯隐形岛", "Action", "Shuxue Huang Dao Lixian Ji 3", "数学荒岛历险记3"], "top_ids": [59620, 57928, 45698]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "sword art online ii", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2271.2, "error": null, "top_titles": ["Sword Art Online II", "Sword Art Online II: Sword Art Offline II", "Sword Art Online Alternative: Gun Gale Online II"], "top_ids": [21881, 28063, 55994]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "约定的梦幻岛", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2228.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "約定的夢幻島", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 18765.0, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "未来日记", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3813.2, "error": null, "top_titles": ["Mirai Nikki", "The Future Diary", "未来日記"], "top_ids": [10620]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "約定的夢幻島", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2566.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "カウボーイビバップ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 4337.5, "error": null, "top_titles": ["Cowboy Bebop", "Cowboy Bebop: Yose Atsume Blues", "Cowboy Bebop: Tengoku no Tobira"], "top_ids": [1, 4037, 5]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "约定的梦幻岛", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2476.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "약속의 네버랜드", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2078.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "미래일기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4957.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "かうぼーいびばっぷ", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3536.4, "error": null, "top_titles": ["Shougakkou Daibouken: Tobe! Shouta no Kamihikouki", "Kakkoii 1-nensei ni Naru Tame no Daibouken", "Utatte Asobou! Yukai na Ekaki Uta: Wakuwaku-hen"], "top_ids": [54416, 51255, 52340]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "約定的夢幻島", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 8636.2, "error": null, "top_titles": ["Yueding", "約定", "Promise", "Naruto Movie 3: Dai Koufun! Mikazuki-jima no Animal Panic Dattebayo!", "Naruto Movie Volume 3", "Naruto: Gekijouban Naruto: Dai Koufun! Mikazuki-jima no Animal Panic Datte ba yo!", "One Piece Movie 06: Omatsuri Danshaku to Himitsu no Shima", "ワンピース オマツリ男爵と秘密の島"], "top_ids": [55634, 2144, 464]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "约定的梦幻岛", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2204.8, "error": null, "top_titles": ["Bao Ke Meng Donghua Tujian: Xiaoqi Dao Zhong", "Pokemon Animated Pokedex: Resting on the Island", "宝可梦动画图鉴 小憩岛中", "Wu Chuang Yinxing Dao", "误闯隐形岛", "Action", "Shuxue Huang Dao Lixian Ji 3", "数学荒岛历险记3"], "top_ids": [59620, 57928, 45698]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "The Promised Neverland", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 4055.9, "error": null, "top_titles": ["Yakusoku no Neverland", "Yakusoku no Neverland 2nd Season", "Yakusoku no Neverland 2nd Season: Tokubetsu-hen - Michishirube", "The Promised Neverland Recap", "Yakusoku no Neverland Recap"], "top_ids": ["41312", "42220", "44076"]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "The Future Diary", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 8444.1, "error": null, "top_titles": ["Mirai Nikki", "The Future Diary", "未来日記", "Mirai Nikki OVA", "Mirai Nikki: Redial", "The Future Diary: Redial", "未来日記リダイヤル"], "top_ids": [10620, 8460, 16762]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "약속의 네버랜드", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5636.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "the promised neverland", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3667.5, "error": null, "top_titles": ["Yakusoku no Neverland", "Yakusoku no Neverland 2nd Season", "Yakusoku no Neverland 2nd Season: Tokubetsu-hen - Michishirube", "The Promised Neverland Recap", "Yakusoku no Neverland Recap"], "top_ids": ["41312", "42220", "44076"]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "星際牛仔", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 10551.1, "error": null, "top_titles": ["Xing Zi Xiao Chu Shen", "Xingxing Muchang: Xingxing de Haizi", "Akai Hoshi Aoi Hoshi: Tenmon Carat no Hoshi kara"], "top_ids": [46737, 46769, 42888]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "この素晴らしい世界に祝福を!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 2266.2, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo!", "Give Blessings to This Wonderful World!", "Kono Subarashii Sekai ni Shukufuku wo! 2", "Give Blessings to This Wonderful World! 2", "Kono Subarashii Sekai ni Shukufuku wo! OVA", "KonoSuba OVA", "A Blessing to this Wonderful Choker!"], "top_ids": ["10941", "11937", "11752"]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "약속의 네버랜드", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 22485.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "为美好的世界献上祝福!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5840.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "The Promised Neverland", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 13130.3, "error": null, "top_titles": ["Yakusoku no Neverland", "約束のネバーランド", "The Promised Neverland", "Yakusoku no Neverland 2nd Season", "The Promised Neverland Season 2", "Yakusoku no Neverland: Michishirube", "The Promised Neverland Recap", "Yakusoku no Neverland Recap"], "top_ids": [37779, 39617, 47616]} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "The Promised Neverland", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5039.1, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "爲美好的世界獻上祝福!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3095.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "the future diary", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 7782.3, "error": null, "top_titles": ["Mirai Nikki", "The Future Diary", "未来日記", "Mirai Nikki OVA", "Mirai Nikki: Redial", "The Future Diary: Redial", "未来日記リダイヤル"], "top_ids": [10620, 8460, 16762]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "星际牛仔", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12246.6, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ソードアート・オンライン II", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2067.4, "error": null, "top_titles": ["Sword Art Online II", "ソードアート・オンライン II", "Sword Art Online Alternative: Gun Gale Online II", "ソードアート・オンライン オルタナティブ ガンゲイル・オンラインⅡ"], "top_ids": [20594, 167141]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "카우보이 비밥", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2777.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Cowboy Bebop", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2062.5, "error": null, "top_titles": ["Cowboy Bebop", "Cowboy Bebop: Ein no Natsuyasumi", "Cowboy Bebop: Tengoku no Tobira"], "top_ids": [1, 17205, 5]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "そーどあーと・おんらいん II", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 10252.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "為美好的世界獻上祝福!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9396.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "the promised neverland", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5099.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "cowboy bebop", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3811.4, "error": null, "top_titles": ["Cowboy Bebop", "Cowboy Bebop: Ein no Natsuyasumi", "Cowboy Bebop: Tengoku no Tobira"], "top_ids": [1, 17205, 5]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "刀劍神域Ⅱ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7235.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 35, "mal_id": 37779, "popularity": 37, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "the promised neverland", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12334.4, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "刀剑神域Ⅱ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2517.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "青の祓魔師", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4080.0, "error": null, "top_titles": ["Ao no Exorcist", "Ao no Exorcist: Kuro no Iede", "Ao no Exorcist: Kyoto Fujouou-hen OVA"], "top_ids": [9919, 11266, 34465]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "소드 아트 온라인 II", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2321.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "この素晴らしい世界に祝福を!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3941.3, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo!", "Give Blessings to This Wonderful World!", "この素晴らしい世界に祝福を!", "Kono Subarashii Sekai ni Shukufuku wo! 2", "Give Blessings to This Wonderful World! 2", "この素晴らしい世界に祝福を! 2", "Kono Subarashii Sekai ni Shukufuku wo! Movie: Kurenai Densetsu", "KonoSuba Movie"], "top_ids": [30831, 32937, 38040]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "青之驱魔师", "hit": true, "position": 8, "kind": "title_exact", "n_returned": 10, "duration_ms": 3130.4, "error": null, "top_titles": ["Feng Shen Chuanqi: Qu Mo Yingxiong", "Benghuai: Xing Qiong Tiedao - Yinhe Renfa Tie Luan Wu Qu Mo Poxie Zhan Yue Zhi Juan", "Balala Xiao Mo Xian: Mofa Hai Ying Bao"], "top_ids": [44827, 60247, 40249]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Sword Art Online II", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2425.1, "error": null, "top_titles": ["Sword Art Online II", "ソードアート・オンライン II", "Sword Art Online Alternative: Gun Gale Online II", "ソードアート・オンライン オルタナティブ ガンゲイル・オンラインⅡ", "Sword Art Online: Alicization", "ソードアート・オンライン アリシゼーション"], "top_ids": [20594, 167141, 100182]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "为美好的世界献上祝福!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13228.9, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "この素晴らしい世界に祝福を!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13216.3, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "sword art online ii", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2336.9, "error": null, "top_titles": ["Sword Art Online II", "ソードアート・オンライン II", "Sword Art Online Alternative: Gun Gale Online II", "ソードアート・オンライン オルタナティブ ガンゲイル・オンラインⅡ", "Sword Art Online: Alicization", "ソードアート・オンライン アリシゼーション"], "top_ids": [20594, 167141, 100182]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "为美好的世界献上祝福!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6098.4, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo!", "Give Blessings to This Wonderful World!", "この素晴らしい世界に祝福を!", "Kono Subarashii Sekai ni Shukufuku wo! 2", "Give Blessings to This Wonderful World! 2", "この素晴らしい世界に祝福を! 2", "Kono Subarashii Sekai ni Shukufuku wo! Movie: Kurenai Densetsu", "KonoSuba Movie"], "top_ids": [30831, 32937, 38040]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "코노스바", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5718.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "カウボーイビバップ", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 4097.7, "error": null, "top_titles": ["Cowboy Bebop", "カウボーイビバップ", "Cowboy Bebop: Tengoku no Tobira", "Cowboy Bebop: The Movie - Knockin' on Heaven's Door", "カウボーイビバップ天国の扉", "Cowboy Bebop: Yoseatsume Blues", "カウボーイビバップ よせあつめブルース"], "top_ids": [1, 5, 4037]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "KonoSuba: God's Blessing on This Wonderful World!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 3258.2, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo!", "Give Blessings to This Wonderful World!", "Kono Subarashii Sekai ni Shukufuku wo! 2", "Give Blessings to This Wonderful World! 2", "Kono Subarashii Sekai ni Shukufuku wo!: Kurenai Densetsu", "KonoSuba Movie", "Eiga Kono Subarashii Sekai ni Shukufuku wo!"], "top_ids": ["10941", "11937", "41440"]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "かうぼーいびばっぷ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2492.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "为美好的世界献上祝福!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7902.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "爲美好的世界獻上祝福!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7544.3, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo!", "Give Blessings to This Wonderful World!", "この素晴らしい世界に祝福を!", "Kono Subarashii Sekai ni Shukufuku wo! 2", "Give Blessings to This Wonderful World! 2", "この素晴らしい世界に祝福を! 2", "Kono Subarashii Sekai ni Shukufuku wo! Movie: Kurenai Densetsu", "KonoSuba Movie"], "top_ids": [30831, 32937, 38040]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "星際牛仔", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3455.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "青之驅魔師", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 15705.3, "error": null, "top_titles": ["Ao no Exorcist", "Ao no Exorcist: Kyoto Fujouou-hen OVA", "Ao no Exorcist: Ura Ex"], "top_ids": [9919, 34465, 10647]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "星际牛仔", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1926.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "青之祓魔師", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2383.0, "error": null, "top_titles": ["Ao no Exorcist", "Ao no Exorcist: Kyoto Fujouou-hen OVA", "Ao no Exorcist: Ura Ex"], "top_ids": [9919, 34465, 10647]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "為美好的世界獻上祝福!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3120.2, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo!", "Give Blessings to This Wonderful World!", "この素晴らしい世界に祝福を!", "Kono Subarashii Sekai ni Shukufuku wo! 2", "Give Blessings to This Wonderful World! 2", "この素晴らしい世界に祝福を! 2", "Kono Subarashii Sekai ni Shukufuku wo! Movie: Kurenai Densetsu", "KonoSuba Movie"], "top_ids": [30831, 32937, 38040]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "konosuba god s blessing on this wonderful world", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13237.6, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "青之祓魔师", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5814.6, "error": null, "top_titles": ["Ao no Exorcist", "Ao no Exorcist: Kyoto Fujouou-hen OVA", "Ao no Exorcist: Ura Ex"], "top_ids": [9919, 34465, 10647]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "为美好的世界献上祝福!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5368.7, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo!", "Give Blessings to This Wonderful World!", "この素晴らしい世界に祝福を!", "Kono Subarashii Sekai ni Shukufuku wo! 2", "Give Blessings to This Wonderful World! 2", "この素晴らしい世界に祝福を! 2", "Kono Subarashii Sekai ni Shukufuku wo! Movie: Kurenai Densetsu", "KonoSuba Movie"], "top_ids": [30831, 32937, 38040]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "未来日記", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 1992.7, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki", "Mirai Nikki (2011)", "Mirai Nikki OVA", "The Future Diary OVA", "Mirai Nikki (TV): Ura Mirai Nikki", "Mirai Nikki: Ura Mirai Nikki", "Mirai Nikki Specials"], "top_ids": ["6266", "5344", "6750"]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "青之驅魔師", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2508.8, "error": null, "top_titles": ["Ao no Exorcist", "Ao no Exorcist: Kyoto Fujouou-hen OVA", "Ao no Exorcist: Ura Ex"], "top_ids": [9919, 34465, 10647]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "為美好的世界獻上祝福!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13971.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "未来日记", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 1878.0, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki", "Mirai Nikki (2011)", "Mirai Nikki OVA", "The Future Diary OVA", "Mirai Nikki (TV): Ura Mirai Nikki", "Mirai Nikki: Ura Mirai Nikki", "Mirai Nikki Specials"], "top_ids": ["6266", "5344", "6750"]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "青之驱魔师", "hit": true, "position": 8, "kind": "title_exact", "n_returned": 10, "duration_ms": 2060.5, "error": null, "top_titles": ["Feng Shen Chuanqi: Qu Mo Yingxiong", "Benghuai: Xing Qiong Tiedao - Yinhe Renfa Tie Luan Wu Qu Mo Poxie Zhan Yue Zhi Juan", "Balala Xiao Mo Xian: Mofa Hai Ying Bao"], "top_ids": [44827, 60247, 40249]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "코노스바", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2816.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "카우보이 비밥", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13285.5, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "청의 엑소시스트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2983.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Cowboy Bebop", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 1864.3, "error": null, "top_titles": ["Cowboy Bebop", "カウボーイビバップ", "Cowboy Bebop: Tengoku no Tobira", "Cowboy Bebop: The Movie - Knockin' on Heaven's Door", "カウボーイビバップ天国の扉", "Cowboy Bebop: Ein no Natsuyasumi", "Ein's Summer Vacation", "アインのなつやすみ"], "top_ids": [1, 5, 17205]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "코노스바", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5888.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Blue Exorcist", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3237.4, "error": null, "top_titles": ["Ao no Exorcist", "Ao no Exorcist: Kuro no Iede", "Ao no Exorcist: Ura Ex"], "top_ids": [9919, 11266, 10647]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "cowboy bebop", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 3769.9, "error": null, "top_titles": ["Cowboy Bebop", "カウボーイビバップ", "Cowboy Bebop: Tengoku no Tobira", "Cowboy Bebop: The Movie - Knockin' on Heaven's Door", "カウボーイビバップ天国の扉", "Cowboy Bebop: Ein no Natsuyasumi", "Ein's Summer Vacation", "アインのなつやすみ"], "top_ids": [1, 5, 17205]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "KonoSuba: God's Blessing on This Wonderful World!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7162.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "未來日記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12198.4, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "青の祓魔師", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2725.2, "error": null, "top_titles": ["Ao no Exorcist", "Blue Exorcist", "青の祓魔師", "Ao no Exorcist: Ura Eku", "Blue Exorcist Specials", "青の祓魔師 裏エク", "Ao no Exorcist: Yosuga-hen", "Blue Exorcist -The Blue Night Saga-"], "top_ids": [9919, 10647, 185880]} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "KonoSuba: God's Blessing on This Wonderful World!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 13687.9, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo!", "Give Blessings to This Wonderful World!", "この素晴らしい世界に祝福を!", "Kono Subarashii Sekai ni Shukufuku wo! 2", "Give Blessings to This Wonderful World! 2", "この素晴らしい世界に祝福を! 2", "Kono Subarashii Sekai ni Shukufuku wo! Movie: Kurenai Densetsu", "KonoSuba Movie"], "top_ids": [30831, 32937, 38040]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "未来日记", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2396.9, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki", "Mirai Nikki (2011)", "Mirai Nikki OVA", "The Future Diary OVA", "Mirai Nikki (TV): Ura Mirai Nikki", "Mirai Nikki: Ura Mirai Nikki", "Mirai Nikki Specials"], "top_ids": ["6266", "5344", "6750"]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "blue exorcist", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2402.2, "error": null, "top_titles": ["Ao no Exorcist", "Ao no Exorcist: Kuro no Iede", "Ao no Exorcist: Ura Ex"], "top_ids": [9919, 11266, 10647]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "未來日記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2373.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "konosuba god s blessing on this wonderful world", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3229.3, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo!", "Give Blessings to This Wonderful World!", "この素晴らしい世界に祝福を!", "Kono Subarashii Sekai ni Shukufuku wo! 2", "Give Blessings to This Wonderful World! 2", "この素晴らしい世界に祝福を! 2", "Kono Subarashii Sekai ni Shukufuku wo! Movie: Kurenai Densetsu", "KonoSuba Movie"], "top_ids": [30831, 32937, 38040]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "寄生獣 セイの格率", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2291.3, "error": null, "top_titles": ["Kiseijuu: Sei no Kakuritsu", "Kiseichuu no Ichiya", "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou"], "top_ids": [22535, 7025, 40496]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "未來日記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2974.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 36, "mal_id": 30831, "popularity": 38, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "konosuba god s blessing on this wonderful world", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9226.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "寄生兽 生命的准则", "hit": true, "position": 9, "kind": "title_exact", "n_returned": 10, "duration_ms": 3487.0, "error": null, "top_titles": ["Majutsu wo Kiwamete Tabi ni Deta Tensei Elf, Moteamashita Jumyou de Ikeru Densetsu to Naru", "Seimei Ouka", "Kiseichuu no Ichiya"], "top_ids": [62978, 61559, 7025]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "未来日记", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2451.3, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki", "Mirai Nikki (2011)", "Mirai Nikki OVA", "The Future Diary OVA", "Mirai Nikki (TV): Ura Mirai Nikki", "Mirai Nikki: Ura Mirai Nikki", "Mirai Nikki Specials"], "top_ids": ["6266", "5344", "6750"]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "未来日記", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7558.3, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki", "Mirai Nikki (2011)", "Mirai Nikki OVA", "未来日記", "Mirai Nikki: Redial", "未来日記リダイヤル"], "top_ids": [10620, 8460, 16762]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "青之驱魔师", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12190.0, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "未來日記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3195.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "未来日記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5148.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ja", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "未来日记", "hit": true, "position": 3, "kind": "id", "n_returned": 10, "duration_ms": 4068.0, "error": null, "top_titles": ["Mirai Campanella", "未来カンパネラ", "Idols (Female)", "Aru Mirai yori Ai wo Komete", "ある未来より愛を込めて", "Music", "Gaudiy Mirai no Yokokuhen", "Gaudiy 未来の予告編"], "top_ids": [61946, 61945, 61360]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "未来日记", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 7246.7, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki", "Mirai Nikki (2011)", "Mirai Nikki OVA", "The Future Diary OVA", "Mirai Nikki (TV): Ura Mirai Nikki", "Mirai Nikki: Ura Mirai Nikki", "Mirai Nikki Specials"], "top_ids": ["6266", "5344", "6750"]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ja", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "未來日記", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3499.7, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki", "Mirai Nikki (2011)", "Mirai Nikki: Redial", "Mirai Nikki OVA", "未来日記リダイヤル", "Tensura Nikki: Tensei shitara Slime Datta Ken", "転スラ日記 転生したらスライムだった件"], "top_ids": [10620, 16762, 41488]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "青之驅魔師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8098.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "未来日记", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7621.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "미래일기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1697.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "未来日记", "hit": true, "position": 3, "kind": "id", "n_returned": 10, "duration_ms": 1890.6, "error": null, "top_titles": ["Mirai Campanella", "未来カンパネラ", "Idols (Female)", "Aru Mirai yori Ai wo Komete", "ある未来より愛を込めて", "Music", "Gaudiy Mirai no Yokokuhen", "Gaudiy 未来の予告編"], "top_ids": [61946, 61945, 61360]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "The Future Diary", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 2441.8, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki", "Mirai Nikki (2011)", "Mirai Nikki: Redial", "Mirai Nikki OVA", "The Future Diary OVA"], "top_ids": ["6266", "7510", "5344"]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "未來日記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4504.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "未來日記", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4915.5, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki", "Mirai Nikki (2011)", "Mirai Nikki: Redial", "Mirai Nikki OVA", "未来日記リダイヤル", "Tensura Nikki: Tensei shitara Slime Datta Ken", "転スラ日記 転生したらスライムだった件"], "top_ids": [10620, 16762, 41488]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "寄生獸 生命的準則", "hit": true, "position": 9, "kind": "title_exact", "n_returned": 10, "duration_ms": 21980.3, "error": null, "top_titles": ["Majutsu wo Kiwamete Tabi ni Deta Tensei Elf, Moteamashita Jumyou de Ikeru Densetsu to Naru", "Seimei Ouka", "Kiseichuu no Ichiya"], "top_ids": [62978, 61559, 7025]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "未來日記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5554.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "未來日記", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4400.8, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki", "Mirai Nikki (2011)", "Mirai Nikki: Redial", "Mirai Nikki OVA", "未来日記リダイヤル", "Tensura Nikki: Tensei shitara Slime Datta Ken", "転スラ日記 転生したらスライムだった件"], "top_ids": [10620, 16762, 41488]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "青之祓魔師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12279.6, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "미래일기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2526.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "기생수 세이의 격률", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3202.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "未来日记", "hit": true, "position": 3, "kind": "id", "n_returned": 10, "duration_ms": 3422.2, "error": null, "top_titles": ["Mirai Campanella", "未来カンパネラ", "Idols (Female)", "Aru Mirai yori Ai wo Komete", "ある未来より愛を込めて", "Music", "Gaudiy Mirai no Yokokuhen", "Gaudiy 未来の予告編"], "top_ids": [61946, 61945, 61360]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "the future diary", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 4431.4, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki", "Mirai Nikki (2011)", "Mirai Nikki: Redial", "Mirai Nikki OVA", "The Future Diary OVA"], "top_ids": ["6266", "7510", "5344"]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Parasyte: The Maxim", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3619.4, "error": null, "top_titles": ["Kiseijuu: Sei no Kakuritsu", "Atelier Petros Joukuu Gekijou: Sentaku Shima no Sentaku Tori", "Mahoutsukai no Yome: Nishi no Shounen to Seiran no Kishi"], "top_ids": [22535, 7617, 48438]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "青之祓魔师", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4753.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ソードアート・オンライン II", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 3214.3, "error": null, "top_titles": ["Sword Art Online II", "Phantom Bullet", "SAO II", "Sword Art Online II: Debriefing", "Sword Art Online II Episode 14.5", "Sword Art Online II Recap", "Sword Art Online Alternative: Gun Gale Online II", "ソードアート・オンライン オルタナティブ 第2期"], "top_ids": ["8174", "9784", "47748"]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "未來日記", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4526.4, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki", "Mirai Nikki (2011)", "Mirai Nikki: Redial", "Mirai Nikki OVA", "未来日記リダイヤル", "Tensura Nikki: Tensei shitara Slime Datta Ken", "転スラ日記 転生したらスライムだった件"], "top_ids": [10620, 16762, 41488]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "parasyte the maxim", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2972.8, "error": null, "top_titles": ["Kiseijuu: Sei no Kakuritsu", "Atelier Petros Joukuu Gekijou: Sentaku Shima no Sentaku Tori", "Mahoutsukai no Yome: Nishi no Shounen to Seiran no Kishi"], "top_ids": [22535, 7617, 48438]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "そーどあーと・おんらいん II", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 2753.0, "error": null, "top_titles": ["Sword Art Online II: Sword Art Offline II", "SAO 2 Specials", "SAO II Specials"], "top_ids": ["9963"]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "青之驅魔師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3704.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "The Future Diary", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9351.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "未来日记", "hit": true, "position": 3, "kind": "id", "n_returned": 10, "duration_ms": 3788.3, "error": null, "top_titles": ["Mirai Campanella", "未来カンパネラ", "Idols (Female)", "Aru Mirai yori Ai wo Komete", "ある未来より愛を込めて", "Music", "Gaudiy Mirai no Yokokuhen", "Gaudiy 未来の予告編"], "top_ids": [61946, 61945, 61360]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "新世紀エヴァンゲリオン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2870.3, "error": null, "top_titles": ["Shinseiki Evangelion", "Shinseiki Evangelion (Shinsaku Series)", "Shinseiki Evangelion Movie: Shi to Shinsei"], "top_ids": [30, 63534, 31]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "青之驱魔师", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1884.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "刀劍神域Ⅱ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2270.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "청의 엑소시스트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2509.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "미래일기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5640.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "the future diary", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3555.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "新世纪福音战士", "hit": true, "position": 2, "kind": "title_substring", "n_returned": 10, "duration_ms": 7388.6, "error": null, "top_titles": ["Chouon Senshi Borgman 2: Shinseiki 2058", "Zoids Shinseiki/Zero", "Shinseiki Evangelion (Shinsaku Series)"], "top_ids": [3764, 764, 63534]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Blue Exorcist", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4694.6, "error": null, "top_titles": ["Ao no Exorcist", "Blue Exorcist", "青の祓魔師", "Ao no Exorcist: Kyoto Fujouou-hen", "Blue Exorcist: Kyoto Saga", "青の祓魔師 京都不浄王篇", "Ao no Exorcist: Yuki no Hate-hen", "Blue Exorcist -Beyond the Snow Saga-"], "top_ids": [9919, 21861, 176311]} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "The Future Diary", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2618.2, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki", "Mirai Nikki (2011)", "Mirai Nikki: Redial", "Mirai Nikki OVA", "未来日記リダイヤル", "未来日記"], "top_ids": [10620, 16762, 8460]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ソードアート・オンライン II", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4042.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "blue exorcist", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2088.1, "error": null, "top_titles": ["Ao no Exorcist", "Blue Exorcist", "青の祓魔師", "Ao no Exorcist: Kyoto Fujouou-hen", "Blue Exorcist: Kyoto Saga", "青の祓魔師 京都不浄王篇", "Ao no Exorcist: Yuki no Hate-hen", "Blue Exorcist -Beyond the Snow Saga-"], "top_ids": [9919, 21861, 176311]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "刀剑神域Ⅱ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12175.0, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "そーどあーと・おんらいん II", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3677.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 37, "mal_id": 10620, "popularity": 39, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "the future diary", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3419.1, "error": null, "top_titles": ["Mirai Nikki (TV)", "Mirai Nikki", "Mirai Nikki (2011)", "Mirai Nikki: Redial", "Mirai Nikki OVA", "未来日記リダイヤル", "未来日記"], "top_ids": [10620, 16762, 8460]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "소드 아트 온라인 II", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2733.9, "error": null, "top_titles": ["Sword Art Online II", "Phantom Bullet", "SAO II", "Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho Hyaku", "Overlord II"], "top_ids": ["8174", "41071", "13237"]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "寄生獣 セイの格率", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3079.4, "error": null, "top_titles": ["Kiseijuu: Sei no Kakuritsu", "Parasyte -the maxim-", "寄生獣 セイの格率"], "top_ids": [20623]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "寄生兽 生命的准则", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2884.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Sword Art Online II", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 3480.5, "error": null, "top_titles": ["Sword Art Online II", "Phantom Bullet", "SAO II", "Sword Art Online II: Debriefing", "Sword Art Online II Episode 14.5", "Sword Art Online II Recap", "Sword Art Online II: Sword Art Offline II", "SAO 2 Specials"], "top_ids": ["8174", "9784", "9963"]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "新世紀福音戰士", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12264.0, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ソードアート・オンライン II", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5472.9, "error": null, "top_titles": ["Sword Art Online II", "Phantom Bullet", "SAO II", "Sword Art Online II: Debriefing", "Sword Art Online II Episode 14.5", "Sword Art Online II Recap", "Sword Art Online Alternative: Gun Gale Online II - Gala", "SAO Alternative Gun Gale Online II 12.5"], "top_ids": [21881, 27891, 59968]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "寄生獸 生命的準則", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1939.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "そーどあーと・おんらいん II", "hit": true, "position": 2, "kind": "title_substring", "n_returned": 10, "duration_ms": 3043.2, "error": null, "top_titles": ["Sword Art Online: Sword Art Offline", "Sword Art Online Specials", "S.A.O Specials", "Sword Art Online: Sword Art Offline - Extra Edition", "SAO Special", "S.A.O Special", "Sword Art Online II: Sword Art Offline II", "SAO 2 Specials"], "top_ids": [16099, 21879, 28063]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "刀劍神域Ⅱ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9138.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "기생수 세이의 격률", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4099.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "sword art online ii", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 4531.6, "error": null, "top_titles": ["Sword Art Online II", "Phantom Bullet", "SAO II", "Sword Art Online II: Debriefing", "Sword Art Online II Episode 14.5", "Sword Art Online II Recap", "Sword Art Online II: Sword Art Offline II", "SAO 2 Specials"], "top_ids": ["8174", "9784", "9963"]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "에반게리온", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7113.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Parasyte: The Maxim", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2491.1, "error": null, "top_titles": ["Kiseijuu: Sei no Kakuritsu", "Parasyte -the maxim-", "寄生獣 セイの格率"], "top_ids": [20623]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Neon Genesis Evangelion", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2142.3, "error": null, "top_titles": ["Shinseiki Evangelion", "Shinseiki Evangelion Movie: Air/Magokoro wo, Kimi ni", "Petit Eva: Evangelion@School"], "top_ids": [30, 32, 4130]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "カウボーイビバップ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3568.2, "error": null, "top_titles": ["Cowboy Bebop", "COWBOY BEBOP", "Cowboy Bebop: Yose Atsume Blues", "Yoseatsume Blues", "Cowboy Bebop Session XX", "Cowboy Bebop: Knockin' on Heaven's Door"], "top_ids": ["1", "3424", "2"]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "parasyte the maxim", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2586.7, "error": null, "top_titles": ["Kiseijuu: Sei no Kakuritsu", "Parasyte -the maxim-", "寄生獣 セイの格率"], "top_ids": [20623]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "刀劍神域Ⅱ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7634.2, "error": null, "top_titles": ["Clevatess II: Majuu no Ou to Itsuwari no Yuusha Denshou", "クレバテスⅡ-魔獣の王と偽りの勇者伝承-", "Clevatess Season 2", "Zhao Lin de Tanxian Riji 2", "赵琳的探险日记Ⅱ", "Fantawild Animation", "Overlord II", "オーバーロードⅡ"], "top_ids": [62513, 61953, 35073]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "新世紀エヴァンゲリオン", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 3044.5, "error": null, "top_titles": ["Shin Seiki Evangelion", "Neon Genesis Evangelion", "新世紀エヴァンゲリオン", "Shin Seiki Evangelion Movie: Shi to Shinsei", "Neon Genesis Evangelion: Death & Rebirth", "新世紀エヴァンゲリオン劇場版 シト新生", "Shin Seiki Evangelion Movie: Air / Magokoro wo, Kimi ni", "Neon Genesis Evangelion: The End of Evangelion"], "top_ids": [30, 31, 32]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "新世纪福音战士", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1235.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "neon genesis evangelion", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3028.2, "error": null, "top_titles": ["Shinseiki Evangelion", "Shinseiki Evangelion Movie: Air/Magokoro wo, Kimi ni", "Petit Eva: Evangelion@School"], "top_ids": [30, 32, 4130]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "소드 아트 온라인 II", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13605.1, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "千と千尋の神隠し", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2124.4, "error": null, "top_titles": ["Sen to Chihiro no Kamikakushi", "Nodame Cantabile: Nodame to Chiaki no Umi Monogatari", "Sora no Otoshimono: Tokeijikake no Angeloid"], "top_ids": [199, 3965, 9790]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "新世紀福音戰士", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3291.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "かうぼーいびばっぷ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8019.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Sword Art Online II", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3139.5, "error": null, "top_titles": ["Sword Art Online II", "Tomohiko Ito", "Yukito Kizawa"], "top_ids": ["15804"]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "千与千寻", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 3075.0, "error": null, "top_titles": ["Qiannian Xun", "Qian Qian Wen", "Sen no Hana Sen no Sora"], "top_ids": [46912, 46148, 42725]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "에반게리온", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3171.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "刀剑神域Ⅱ", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 10810.0, "error": null, "top_titles": ["He Wei Dao x Daojian Shenyu Alicization", "Sword Art Online: Alicization x Nissin", "Sword Art Online Alicization: x Cup Noodles", "Xue Zhong Han Dao Xing", "雪中悍刀行", "Fierce Sabre in the Snow", "Clevatess II: Majuu no Ou to Itsuwari no Yuusha Denshou", "クレバテスⅡ-魔獣の王と偽りの勇者伝承-"], "top_ids": [42128, 62740, 62513]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "星際牛仔", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4538.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Neon Genesis Evangelion", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2156.9, "error": null, "top_titles": ["Shin Seiki Evangelion", "Neon Genesis Evangelion", "新世紀エヴァンゲリオン", "Shin Seiki Evangelion Movie: Air / Magokoro wo, Kimi ni", "Neon Genesis Evangelion: The End of Evangelion", "新世紀エヴァンゲリオン劇場版 Air/まごころを、君に", "Shin Seiki Evangelion Movie: Shi to Shinsei", "Neon Genesis Evangelion: Death & Rebirth"], "top_ids": [30, 32, 31]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "소드 아트 온라인 II", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4923.5, "error": null, "top_titles": ["Sword Art Online II", "Phantom Bullet", "SAO II", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", "DanMachi 2nd Season", "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season", "Kuroshitsuji II", "Kuroshitsuji 2"], "top_ids": [21881, 37347, 6707]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "neon genesis evangelion", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2791.9, "error": null, "top_titles": ["Shin Seiki Evangelion", "Neon Genesis Evangelion", "新世紀エヴァンゲリオン", "Shin Seiki Evangelion Movie: Air / Magokoro wo, Kimi ni", "Neon Genesis Evangelion: The End of Evangelion", "新世紀エヴァンゲリオン劇場版 Air/まごころを、君に", "Shin Seiki Evangelion Movie: Shi to Shinsei", "Neon Genesis Evangelion: Death & Rebirth"], "top_ids": [30, 32, 31]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "星际牛仔", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7537.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "千と千尋の神隠し", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 4067.3, "error": null, "top_titles": ["Sen to Chihiro no Kamikakushi", "Spirited Away", "千と千尋の神隠し"], "top_ids": [199]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Sword Art Online II", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5253.5, "error": null, "top_titles": ["Sword Art Online II", "Phantom Bullet", "SAO II", "Sword Art Online II: Debriefing", "Sword Art Online II Episode 14.5", "Sword Art Online II Recap", "Sword Art Online II: Sword Art Offline II", "SAO 2 Specials"], "top_ids": [21881, 27891, 28063]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "千與千尋", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12242.3, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "千与千寻", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 4210.7, "error": null, "top_titles": ["Sen to Chihiro no Kamikakushi", "Spirited Away", "千と千尋の神隠し"], "top_ids": [199]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "sword art online ii", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2218.1, "error": null, "top_titles": ["Sword Art Online II", "Phantom Bullet", "SAO II", "Sword Art Online II: Debriefing", "Sword Art Online II Episode 14.5", "Sword Art Online II Recap", "Sword Art Online II: Sword Art Offline II", "SAO 2 Specials"], "top_ids": [21881, 27891, 28063]} +{"sample_index": 38, "mal_id": 21881, "popularity": 40, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "sword art online ii", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 12548.3, "error": null, "top_titles": ["Sword Art Online II", "Tomohiko Ito", "Yukito Kizawa"], "top_ids": ["15804"]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "千與千尋", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2352.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "千與千尋", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6655.0, "error": null, "top_titles": ["Sen to Chihiro no Kamikakushi", "Qian Qian Wen", "Sen no Hana Sen no Sora"], "top_ids": [199, 46148, 42725]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "カウボーイビバップ", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3125.6, "error": null, "top_titles": ["Cowboy Bebop", "カウボーイビバップ", "Bandai Visual", "Cowboy Bebop: Tengoku no Tobira", "Cowboy Bebop: Knockin' on Heaven's Door", "カウボーイビバップ 天国の扉", "Cowboy Bebop: Yose Atsume Blues", "Yoseatsume Blues"], "top_ids": [1, 5, 4037]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "カウボーイビバップ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4591.7, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "카우보이 비밥", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12330.3, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "かうぼーいびばっぷ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2670.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "かうぼーいびばっぷ", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5621.5, "error": null, "top_titles": ["Non Non Biyori Nonstop", "Non Non Biyori 3rd Season", "Non Non Biyori Third Season", "Non Non Biyori Nonstop: Bukatsu wo Ganbatta", "Non Non Biyori Nonstop Episode 13", "Non Non Biyori Nonstop OVA", "Tenshi no Drop", "天使のどろっぷ"], "top_ids": [39808, 49521, 16436]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "星際牛仔", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3028.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "千与千寻", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 9378.0, "error": null, "top_titles": ["Qiannian Xun", "Qian Qian Wen", "Sen no Hana Sen no Sora"], "top_ids": [46912, 46148, 42725]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Cowboy Bebop", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 8246.7, "error": null, "top_titles": ["Cowboy Bebop", "COWBOY BEBOP", "Cowboy Bebop: Knockin' on Heaven's Door", "Cowboy Bebop: Yose Atsume Blues", "Yoseatsume Blues", "Cowboy Bebop Session XX"], "top_ids": ["1", "2", "3424"]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "카우보이 비밥", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2709.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "千與千尋", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12337.0, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "星際牛仔", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5530.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "神隱少女", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3462.0, "error": null, "top_titles": ["Shoujo x Shoujo x Shoujo The Animation", "Soushin Shoujo Matoi", "Telepathy Shoujo Ran"], "top_ids": [14379, 33668, 3668]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "神隐少女", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2471.3, "error": null, "top_titles": ["Shoujo x Shoujo x Shoujo The Animation", "Soushin Shoujo Matoi", "Telepathy Shoujo Ran"], "top_ids": [14379, 33668, 3668]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "cowboy bebop", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 2799.9, "error": null, "top_titles": ["Cowboy Bebop", "COWBOY BEBOP", "Cowboy Bebop: Knockin' on Heaven's Door", "Cowboy Bebop: Yose Atsume Blues", "Yoseatsume Blues", "Cowboy Bebop Session XX"], "top_ids": ["1", "2", "3424"]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "星际牛仔", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4331.9, "error": null, "top_titles": ["Xingji Yi You", "Interstellar Tour", "星际一游", "Zhu Zhu Xia Da Dianying: Xingji Xingdong", "猪猪侠大电影·星际行动", "Sci-Fi", "Xingji Jiazu: Anquan Shaonian Tuan", "星际家族之安全少年团"], "top_ids": [51937, 57464, 45860]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "千与千寻", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 5408.3, "error": null, "top_titles": ["Sen to Chihiro no Kamikakushi", "Spirited Away", "千と千尋の神隠し"], "top_ids": [199]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Cowboy Bebop", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6298.4, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "青の祓魔師", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 9, "duration_ms": 2274.0, "error": null, "top_titles": ["Ao no Exorcist", "Ao no Futsumashi", "Ao no Exorcist: Kyoto Fujouou-hen", "Blue Exorcist: Kyoto Impure King Arc", "Ao no Exorcist: Kuro no Iede", "Ao no Exorcist Special", "Ao no Futsumashi: Kuro no Iede"], "top_ids": ["5940", "12275", "6484"]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "센과치히로의행방불명", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3092.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "神隱少女", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2285.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "카우보이 비밥", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3419.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "青之驱魔师", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3197.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Spirited Away", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3248.4, "error": null, "top_titles": ["Sen to Chihiro no Kamikakushi", "Ookamikakushi", "Run Aways"], "top_ids": [199, 7079, 55069]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "神隐少女", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3206.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Cowboy Bebop", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3615.3, "error": null, "top_titles": ["Cowboy Bebop", "カウボーイビバップ", "Bandai Visual", "Cowboy Bebop: Tengoku no Tobira", "Cowboy Bebop: Knockin' on Heaven's Door", "カウボーイビバップ 天国の扉", "Cowboy Bebop: Yose Atsume Blues", "Yoseatsume Blues"], "top_ids": [1, 5, 4037]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "센과치히로의행방불명", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1343.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "青之驅魔師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2587.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "cowboy bebop", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 2, "duration_ms": 3891.1, "error": null, "top_titles": ["Cowboy Bebop: The Movie", "Hiroyuki Okiura", "Shinichirō Watanabe", "Cowboy Bebop", "Keiko Nobumoto"], "top_ids": ["353", "13"]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Spirited Away", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2122.4, "error": null, "top_titles": ["Sen to Chihiro no Kamikakushi", "Spirited Away", "千と千尋の神隠し"], "top_ids": [199]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "spirited away", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2389.2, "error": null, "top_titles": ["Sen to Chihiro no Kamikakushi", "Ookamikakushi", "Run Aways"], "top_ids": [199, 7079, 55069]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "青の祓魔師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2648.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ヴァイオレット・エヴァーガーデン", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 7, "duration_ms": 4249.3, "error": null, "top_titles": ["Violet Evergarden CMs", "Violet Evergarden", "Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou"], "top_ids": [42166, 33352, 39741]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "spirited away", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 1971.1, "error": null, "top_titles": ["Sen to Chihiro no Kamikakushi", "Spirited Away", "千と千尋の神隠し"], "top_ids": [199]} +{"sample_index": 39, "mal_id": 1, "popularity": 41, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "cowboy bebop", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4897.0, "error": null, "top_titles": ["Cowboy Bebop", "カウボーイビバップ", "Bandai Visual", "Cowboy Bebop: Tengoku no Tobira", "Cowboy Bebop: Knockin' on Heaven's Door", "カウボーイビバップ 天国の扉", "Cowboy Bebop: Yose Atsume Blues", "Yoseatsume Blues"], "top_ids": [1, 5, 4037]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "青之驱魔师", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4313.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "ゔぁいおれっと・えゔぁーがーでん", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2681.3, "error": null, "top_titles": ["Eiga de Toujou! Tamagotchi Dokidoki! Uchuu no Maigotchi!?", "Guardian Hearts-Power UP!", "[Watashi no Ofuru de Waruin dakedo] to Okaasama (Heroine) ni Torimaki wo Oshitsukerare, Totsuida Henkyou demo Yome Atsukai Saremasen ga, Okage de Jiyuu ni Ikiraremasu!"], "top_ids": [6518, 3157, 62520]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ヴァイオレット・エヴァーガーデン", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 3850.8, "error": null, "top_titles": ["Violet Evergarden", "ヴァイオレット・エヴァーガーデン", "Violet Evergarden CM", "ヴァイオレット・エヴァーガーデン CM", "Violet Evergarden Movie", "Violet Evergarden: the Movie", "劇場版 ヴァイオレット・エヴァーガーデン"], "top_ids": [21827, 154164, 103047]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "青の祓魔師", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2953.9, "error": null, "top_titles": ["Ao no Exorcist", "Ao no Futsumashi", "青の祓魔師", "Ao no Exorcist: Kyoto Fujouou-hen", "Blue Exorcist: Kyoto Impure King Arc", "青の祓魔師 京都不浄王篇", "Ao no Exorcist Movie", "Ao no Exorcist Gekijouban"], "top_ids": [9919, 33506, 11737]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "ゔぁいおれっと・えゔぁーがーでん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2159.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "青之祓魔師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3885.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "紫罗兰永恒花园", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4019.7, "error": null, "top_titles": ["Lanhua Hua", "Ma Lan Hua (2009)", "Ma Lan Hua"], "top_ids": [43655, 43895, 43894]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "青之祓魔師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13255.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "青之驱魔师", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 3408.4, "error": null, "top_titles": ["Tu Xia Zhi Qing Li Chuanshuo", "Tu Xia: Qing Li Chuanshuo", "兔侠之青黎传说", "Ao no Miburo: Serizawa Ansatsu-hen", "Blue Miburo: Serizawa Assassination Arc", "青のミブロ 芹沢暗殺編", "Ao no Exorcist", "Ao no Futsumashi"], "top_ids": [32890, 61333, 9919]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "紫羅蘭永恆花園", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2729.2, "error": null, "top_titles": ["Tunshi Yongheng", "Xiangle Huayuan", "Anime Himitsu no Hanazono"], "top_ids": [50300, 60272, 2810]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "青之祓魔师", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2343.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "青之驅魔師", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 2633.7, "error": null, "top_titles": ["Tu Xia Zhi Qing Li Chuanshuo", "Tu Xia: Qing Li Chuanshuo", "兔侠之青黎传说", "Ao no Miburo: Serizawa Ansatsu-hen", "Blue Miburo: Serizawa Assassination Arc", "青のミブロ 芹沢暗殺編", "Ao no Exorcist", "Ao no Futsumashi"], "top_ids": [32890, 61333, 9919]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "青之驅魔師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5732.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "바이올렛 에버가든", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3105.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Violet Evergarden", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2601.8, "error": null, "top_titles": ["Violet Evergarden", "Violet Evergarden CMs", "Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou"], "top_ids": [33352, 42166, 39741]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "紫罗兰永恒花园", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 12173.6, "error": null, "top_titles": ["Violet Evergarden", "ヴァイオレット・エヴァーガーデン"], "top_ids": [21827]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "青之驅魔師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12249.4, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "紫羅蘭永恆花園", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3806.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "청의 엑소시스트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 11520.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "青之祓魔師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13193.1, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "바이올렛 에버가든", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2971.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "青之驱魔师", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5069.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "청의 엑소시스트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2717.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "violet evergarden", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 12403.4, "error": null, "top_titles": ["Violet Evergarden", "Violet Evergarden CMs", "Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou"], "top_ids": [33352, 42166, 39741]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Blue Exorcist", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2834.3, "error": null, "top_titles": ["Ao no Exorcist", "Ao no Futsumashi", "Ao no Exorcist: Kyoto Fujouou-hen", "Blue Exorcist: Kyoto Impure King Arc", "Ao no Exorcist Movie", "Ao no Exorcist Gekijouban", "Ao no Futsumashi Movie"], "top_ids": ["5940", "12275", "6580"]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "チェンソーマン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2754.1, "error": null, "top_titles": ["Chainsaw Man", "Chainsaw Man: Shikaku-hen", "Chainsaw Man Recap"], "top_ids": [44511, 63143, 62352]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Blue Exorcist", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12187.7, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "青之祓魔师", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 13252.7, "error": null, "top_titles": ["Tu Xia Zhi Qing Li Chuanshuo", "Tu Xia: Qing Li Chuanshuo", "兔侠之青黎传说", "Ao no Miburo: Serizawa Ansatsu-hen", "Blue Miburo: Serizawa Assassination Arc", "青のミブロ 芹沢暗殺編", "Ao no Exorcist", "Ao no Futsumashi"], "top_ids": [32890, 61333, 9919]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "ちぇんそーまん", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3596.6, "error": null, "top_titles": ["Sore Ike! Anpanman: Akachanman to Baikin Santa", "Fushigi na Somera-chan: Hajimatteru yo! Sono Ato no Somera-chan!!", "Soreyuke Marin-chan"], "top_ids": [60492, 33659, 2410]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Violet Evergarden", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14178.9, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "青之驅魔師", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 3804.8, "error": null, "top_titles": ["Tu Xia Zhi Qing Li Chuanshuo", "Tu Xia: Qing Li Chuanshuo", "兔侠之青黎传说", "Ao no Miburo: Serizawa Ansatsu-hen", "Blue Miburo: Serizawa Assassination Arc", "青のミブロ 芹沢暗殺編", "Ao no Exorcist", "Ao no Futsumashi"], "top_ids": [32890, 61333, 9919]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "链锯人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4273.8, "error": null, "top_titles": ["Ningen ni Shiawase ni suru Ningen, Teijin", "Jinsei", "Jinzou Ningen Kikaider The Animation"], "top_ids": [57994, 23121, 598]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "blue exorcist", "hit": true, "position": 5, "kind": "title_exact", "n_returned": 7, "duration_ms": 3767.1, "error": null, "top_titles": ["Blue Exorcist: The Blue Night Saga", "Daisuke Yoshida", "Toshiya Ono", "Blue Exorcist: Beyond the Snow Saga", "Blue Exorcist: Shimane Illuminati Saga"], "top_ids": ["32874", "32565", "29818"]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "blue exorcist", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 9060.8, "error": null, "top_titles": ["Ao no Exorcist", "Ao no Futsumashi", "Ao no Exorcist: Kyoto Fujouou-hen", "Blue Exorcist: Kyoto Impure King Arc", "Ao no Exorcist Movie", "Ao no Exorcist Gekijouban", "Ao no Futsumashi Movie"], "top_ids": ["5940", "12275", "6580"]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "寄生獣 セイの格率", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2172.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "鏈鋸人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3434.7, "error": null, "top_titles": ["Ningen ni Shiawase ni suru Ningen, Teijin", "Jinsei", "Jinzou Ningen Kikaider The Animation"], "top_ids": [57994, 23121, 598]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "青之驱魔师", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 5512.9, "error": null, "top_titles": ["Tu Xia Zhi Qing Li Chuanshuo", "Tu Xia: Qing Li Chuanshuo", "兔侠之青黎传说", "Ao no Miburo: Serizawa Ansatsu-hen", "Blue Miburo: Serizawa Assassination Arc", "青のミブロ 芹沢暗殺編", "Ao no Exorcist", "Ao no Futsumashi"], "top_ids": [32890, 61333, 9919]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "violet evergarden", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 5954.5, "error": null, "top_titles": ["Violet Evergarden", "ヴァイオレット・エヴァーガーデン", "Violet Evergarden CM", "ヴァイオレット・エヴァーガーデン CM", "Violet Evergarden Movie", "Violet Evergarden: the Movie", "劇場版 ヴァイオレット・エヴァーガーデン"], "top_ids": [21827, 154164, 103047]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "寄生兽 生命的准则", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2307.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "鏈鋸人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3847.1, "error": null, "top_titles": ["Ningen ni Shiawase ni suru Ningen, Teijin", "Jinsei", "Jinzou Ningen Kikaider The Animation"], "top_ids": [57994, 23121, 598]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "청의 엑소시스트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4482.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "기생수 세이의 격률", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4024.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "链锯人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2886.1, "error": null, "top_titles": ["Ningen ni Shiawase ni suru Ningen, Teijin", "Jinsei", "Jinzou Ningen Kikaider The Animation"], "top_ids": [57994, 23121, 598]} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Blue Exorcist", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4002.3, "error": null, "top_titles": ["Ao no Exorcist", "Ao no Futsumashi", "青の祓魔師", "Ao no Exorcist: Kyoto Fujouou-hen", "Blue Exorcist: Kyoto Impure King Arc", "青の祓魔師 京都不浄王篇", "Ao no Exorcist Movie", "Ao no Exorcist Gekijouban"], "top_ids": [9919, 33506, 11737]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "寄生獣 セイの格率", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 11410.1, "error": null, "top_titles": ["Kiseijuu: Sei no Kakuritsu", "Parasite", "Parasitic Beasts"], "top_ids": ["8147"]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "체인소맨", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3172.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "チェンソーマン", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 8854.3, "error": null, "top_titles": ["Chainsaw Man", "チェンソーマン", "Chainsaw Man: Reze-hen", "Chainsaw Man – The Movie: Reze Arc", "チェンソーマン レゼ篇", "Chainsaw Man: Shikaku-hen", "チェンソーマン 刺客篇"], "top_ids": [127230, 171627, 204429]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Parasyte: The Maxim", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5830.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Chainsaw Man", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3398.5, "error": null, "top_titles": ["Chainsaw Man", "Chainsaw Man Movie: Reze-hen", "Chainsaw Man: Shikaku-hen"], "top_ids": [44511, 57555, 63143]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "ちぇんそーまん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5195.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "parasyte the maxim", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3293.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "新世紀エヴァンゲリオン", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4283.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "寄生兽 生命的准则", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 10388.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "chainsaw man", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4288.5, "error": null, "top_titles": ["Chainsaw Man", "Chainsaw Man Movie: Reze-hen", "Chainsaw Man: Shikaku-hen"], "top_ids": [44511, 57555, 63143]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "寄生獸 生命的準則", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2778.3, "error": null, "top_titles": ["Kiseijuu: Sei no Kakuritsu", "Parasite", "Parasitic Beasts"], "top_ids": ["8147"]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "新世纪福音战士", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3469.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "青春ブタ野郎はバニーガール先輩の夢を見ない", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4351.0, "error": null, "top_titles": ["Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", "Seishun Buta Yarou wa Randoseru Girl no Yume wo Minai", "Seishun Buta Yarou wa Santa Claus no Yume wo Minai"], "top_ids": [37450, 54870, 57433]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "에반게리온", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3216.6, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 40, "mal_id": 9919, "popularity": 42, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "blue exorcist", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4185.6, "error": null, "top_titles": ["Ao no Exorcist", "Ao no Futsumashi", "青の祓魔師", "Ao no Exorcist: Kyoto Fujouou-hen", "Blue Exorcist: Kyoto Impure King Arc", "青の祓魔師 京都不浄王篇", "Ao no Exorcist Movie", "Ao no Exorcist Gekijouban"], "top_ids": [9919, 33506, 11737]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "链锯人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12180.9, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "鏈鋸人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2330.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "寄生獣 セイの格率", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3736.5, "error": null, "top_titles": ["Kiseijuu: Sei no Kakuritsu", "Parasite", "Parasitic Beasts"], "top_ids": [22535]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "青春猪头少年不会梦到兔女郎学姐", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6049.4, "error": null, "top_titles": ["Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai", "Kiitarou Shounen no Youkai Enikki: Jonan no Saijitsu", "Zhu Zhu Xia: Ying Xiong Zhu Shao Nian"], "top_ids": [38329, 34999, 38134]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "기생수 세이의 격률", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8968.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "寄生兽 生命的准则", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2443.7, "error": null, "top_titles": ["Kiseijuu: Sei no Kakuritsu", "Parasite", "Parasitic Beasts"], "top_ids": [22535]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Parasyte: The Maxim", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 1988.9, "error": null, "top_titles": ["Kiseijuu: Sei no Kakuritsu", "Parasite", "Parasitic Beasts"], "top_ids": ["8147"]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "寄生獸 生命的準則", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 5826.0, "error": null, "top_titles": ["Kiseijuu: Sei no Kakuritsu", "Parasite", "Parasitic Beasts"], "top_ids": [22535]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "鏈鋸人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9827.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Neon Genesis Evangelion", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 3, "duration_ms": 13429.3, "error": null, "top_titles": ["Neon Genesis Evangelion: The End of Evangelion", "Hideaki Anno", "Kazuya Tsurumaki", "Neon Genesis Evangelion: Death & Rebirth", "Neon Genesis Evangelion", "Hiroshi Yamaguchi"], "top_ids": ["419", "418", "49"]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "parasyte the maxim", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 6530.9, "error": null, "top_titles": ["Kiseijuu: Sei no Kakuritsu", "Parasite", "Parasitic Beasts"], "top_ids": ["8147"]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "青春豬頭少年不會夢到兔女郎學姐", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 11509.3, "error": null, "top_titles": ["Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai", "Seishun Buta Yarou wa Randoseru Girl no Yume wo Minai", "Seishun Buta Yarou wa Dear Friend no Yume wo Minai"], "top_ids": [38329, 54870, 62582]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "청춘 돼지는 바니걸 선배의 꿈을 꾸지 않는다", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 2203.8, "error": null, "top_titles": ["Cheongchun Blossom: Uliui Bom"], "top_ids": [63964]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "기생수 세이의 격률", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6175.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "新世紀エヴァンゲリオン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 4706.9, "error": null, "top_titles": ["Neon Genesis Evangelion", "Neon Genesis Evangelion: The End of Evangelion", "Neon Genesis Evangelion: Death & Rebirth", "Neon Genesis Evangelion - Death and Rebirth"], "top_ids": ["21", "23", "22"]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "链锯人", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 5720.9, "error": null, "top_titles": ["Chainsaw Man", "チェンソーマン"], "top_ids": [127230]} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Parasyte: The Maxim", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2445.7, "error": null, "top_titles": ["Kiseijuu: Sei no Kakuritsu", "Parasite", "Parasitic Beasts", "Super Wings the Movie: Maximum Speed", "극장판 슈퍼윙스: 맥시멈 스피드", "Super Wings: Maximum Speed", "Grappler Baki: Saidai Tournament-hen", "Baki the Grappler II"], "top_ids": [22535, 56262, 551]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "체인소맨", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3478.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "新世纪福音战士", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4425.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 41, "mal_id": 22535, "popularity": 43, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "parasyte the maxim", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2641.5, "error": null, "top_titles": ["Kiseijuu: Sei no Kakuritsu", "Parasite", "Parasitic Beasts", "Super Wings the Movie: Maximum Speed", "극장판 슈퍼윙스: 맥시멈 스피드", "Super Wings: Maximum Speed", "Grappler Baki: Saidai Tournament-hen", "Baki the Grappler II"], "top_ids": [22535, 56262, 551]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Rascal Does Not Dream of Bunny Girl Senpai", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6786.5, "error": null, "top_titles": ["Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", "Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai", "Seishun Buta Yarou wa Santa Claus no Yume wo Minai"], "top_ids": [37450, 38329, 57433]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "新世紀福音戰士", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1837.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Chainsaw Man", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2865.2, "error": null, "top_titles": ["Chainsaw Man", "チェンソーマン", "Chainsaw Man: Shikaku-hen", "チェンソーマン 刺客篇", "Chainsaw Man: Reze-hen", "Chainsaw Man – The Movie: Reze Arc", "チェンソーマン レゼ篇"], "top_ids": [127230, 204429, 171627]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "新世紀エヴァンゲリオン", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3204.4, "error": null, "top_titles": ["Shinseiki Evangelion", "NGE", "Evangelion (1995)", "Shinseiki Evangelion Movie: Air/Magokoro wo, Kimi ni", "Shinseiki Evangelion Gekijouban: The End of Evangelion", "EoE", "Shinseiki Evangelion Movie: Shi to Shinsei", "Shinseiki Evangelion Gekijouban: Shi to Shinsei"], "top_ids": [30, 32, 31]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "chainsaw man", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 1819.1, "error": null, "top_titles": ["Chainsaw Man", "チェンソーマン", "Chainsaw Man: Shikaku-hen", "チェンソーマン 刺客篇", "Chainsaw Man: Reze-hen", "Chainsaw Man – The Movie: Reze Arc", "チェンソーマン レゼ篇"], "top_ids": [127230, 204429, 171627]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "neon genesis evangelion", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13245.2, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "青春ブタ野郎はバニーガール先輩の夢を見ない", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2756.3, "error": null, "top_titles": ["Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", "Rascal Does Not Dream of Bunny Girl Senpai", "青春ブタ野郎はバニーガール先輩の夢を見ない"], "top_ids": [101291]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "千と千尋の神隠し", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2755.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "新世纪福音战士", "hit": true, "position": 9, "kind": "id", "n_returned": 10, "duration_ms": 4991.6, "error": null, "top_titles": ["Xin Baoxiao Xiaoyuan", "新爆笑校园 第一季", "Funny School", "Blue Lock (Shin Series)", "ブルーロック 新シリーズ", "Sports", "Shin Tennis no Oujisama: U-17 World Cup Kesshou Member Ketteisen", "新テニスの王子様 U-17 WORLD CUP 決勝メンバー決定戦"], "top_ids": [63094, 62589, 62534]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "rascal does not dream of bunny girl senpai", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6055.8, "error": null, "top_titles": ["Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", "Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai", "Seishun Buta Yarou wa Santa Claus no Yume wo Minai"], "top_ids": [37450, 38329, 57433]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "新世紀福音戰士", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2591.4, "error": null, "top_titles": ["Shinseiki Evangelion", "NGE", "Evangelion (1995)", "Shinseiki Evangelion Movie: Air/Magokoro wo, Kimi ni", "Shinseiki Evangelion Gekijouban: The End of Evangelion", "EoE", "Shinseiki Evangelion Movie: Shi to Shinsei", "Shinseiki Evangelion Gekijouban: Shi to Shinsei"], "top_ids": [30, 32, 31]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "青春猪头少年不会梦到兔女郎学姐", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 4299.9, "error": null, "top_titles": ["Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", "Rascal Does Not Dream of Bunny Girl Senpai", "青春ブタ野郎はバニーガール先輩の夢を見ない"], "top_ids": [101291]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ドクターストーン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2563.9, "error": null, "top_titles": ["Dr. Stone", "Dr. Stone: Stone Wars"], "top_ids": [38691, 40852]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "千与千寻", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4212.9, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "どくたーすとーん", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2450.3, "error": null, "top_titles": ["Dondonshi Television Vol. 0: Saito-san wo Shinryaku shita yo.", "Sword Art Online II: Sword Art Offline II", "Never Ending Story"], "top_ids": [63068, 28063, 59516]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "에반게리온", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13280.3, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "千與千尋", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5367.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "石纪元", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3576.1, "error": null, "top_titles": ["Xiling Jiyuan", "Kaseki Dorobou to Kyouryuuseki", "Yuan Long"], "top_ids": [50431, 24047, 42284]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Neon Genesis Evangelion", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 4952.0, "error": null, "top_titles": ["Neon Genesis Evangelion", "Neon Genesis Evangelion: The End of Evangelion", "Neon Genesis Evangelion: Death & Rebirth", "Neon Genesis Evangelion - Death and Rebirth"], "top_ids": ["21", "23", "22"]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "神隱少女", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2558.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "에반게리온", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12342.0, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "青春豬頭少年不會夢到兔女郎學姐", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12278.3, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "센과치히로의행방불명", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3950.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "石紀元", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6176.9, "error": null, "top_titles": ["Kaseki Dorobou to Kyouryuuseki", "Yuan Long", "Yu Shi"], "top_ids": [24047, 42284, 44669]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "청춘 돼지는 바니걸 선배의 꿈을 꾸지 않는다", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2681.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "Dr.STONE 新石紀 第一季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3125.5, "error": null, "top_titles": ["Xin Baoxiao Xiaoyuan", "Xin Datou Er Zi He Xiao Tou Baba", "Jiandao Di Yi Xian 2nd Season"], "top_ids": [63094, 43922, 59087]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Neon Genesis Evangelion", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4529.9, "error": null, "top_titles": ["Shinseiki Evangelion", "NGE", "Evangelion (1995)", "Shinseiki Evangelion Movie: Air/Magokoro wo, Kimi ni", "Shinseiki Evangelion Gekijouban: The End of Evangelion", "EoE", "Shinseiki Evangelion Movie: Shi to Shinsei", "Shinseiki Evangelion Gekijouban: Shi to Shinsei"], "top_ids": [30, 32, 31]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "Dr.STONE 新石纪 第一季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2624.5, "error": null, "top_titles": ["Xin Baoxiao Xiaoyuan", "Xin Datou Er Zi He Xiao Tou Baba", "Jiandao Di Yi Xian 2nd Season"], "top_ids": [63094, 43922, 59087]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Rascal Does Not Dream of Bunny Girl Senpai", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3391.4, "error": null, "top_titles": ["Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", "Rascal Does Not Dream of Bunny Girl Senpai", "青春ブタ野郎はバニーガール先輩の夢を見ない"], "top_ids": [101291]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Spirited Away", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 7401.7, "error": null, "top_titles": ["Spirited Away", "Hayao Miyazaki", "Joe Hisaishi"], "top_ids": ["377"]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "neon genesis evangelion", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2581.2, "error": null, "top_titles": ["Shinseiki Evangelion", "NGE", "Evangelion (1995)", "Shinseiki Evangelion Movie: Air/Magokoro wo, Kimi ni", "Shinseiki Evangelion Gekijouban: The End of Evangelion", "EoE", "Shinseiki Evangelion Movie: Shi to Shinsei", "Shinseiki Evangelion Gekijouban: Shi to Shinsei"], "top_ids": [30, 32, 31]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "닥터 스톤", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 4185.4, "error": null, "top_titles": ["Dr.B-Pang", "Stone Age: Jeonseol-ui Pes-eul Chaj-aseo", "Chao Bian Wu Shou"], "top_ids": [61958, 36657, 45206]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "rascal does not dream of bunny girl senpai", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 4223.7, "error": null, "top_titles": ["Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", "Rascal Does Not Dream of Bunny Girl Senpai", "青春ブタ野郎はバニーガール先輩の夢を見ない"], "top_ids": [101291]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ドクターストーン", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 1996.3, "error": null, "top_titles": ["Dr. STONE", "Dr.STONE", "Dr. STONE: SCIENCE FUTURE Part 2", "Dr. STONE SCIENCE FUTURE Cour 2", "Dr.STONE SCIENCE FUTURE 2クール", "Dr. STONE: SCIENCE FUTURE", "Dr. STONE SCIENCE FUTURE", "Dr.STONE SCIENCE FUTURE"], "top_ids": [105333, 189117, 172019]} +{"sample_index": 42, "mal_id": 30, "popularity": 44, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "neon genesis evangelion", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 15903.4, "error": null, "top_titles": ["Neon Genesis Evangelion", "Neon Genesis Evangelion: The End of Evangelion", "Neon Genesis Evangelion: Death & Rebirth", "Neon Genesis Evangelion - Death and Rebirth"], "top_ids": ["21", "23", "22"]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "spirited away", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 4028.9, "error": null, "top_titles": ["Spirited Away", "Hayao Miyazaki", "Joe Hisaishi"], "top_ids": ["377"]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Dr. Stone", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7629.4, "error": null, "top_titles": ["Dr. Stone", "Dr. Stone: Stone Wars", "Dr. Stone: Stone Wars - Kaisen Zenya Special Eizou"], "top_ids": [38691, 40852, 43555]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "千と千尋の神隠し", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3022.5, "error": null, "top_titles": ["Spirited Away", "Sen and Chihiro's Spiriting Away"], "top_ids": ["176"]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "千と千尋の神隠し", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 9876.8, "error": null, "top_titles": ["Sen to Chihiro no Kamikakushi", "Sen and Chihiro's Spiriting Away", "千と千尋の神隠し", "Kaii to Otome to Kamikakushi", "Mysteries", "Maidens", "Sengoku Youko: Senma Konton-hen", "Sengoku Youko Part 2"], "top_ids": [199, 54199, 58488]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ヴァイオレット・エヴァーガーデン", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3126.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "千与千寻", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2370.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "千与千寻", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 2739.9, "error": null, "top_titles": ["Xun", "寻", "Seeks", "Sen to Chihiro no Kamikakushi", "Sen and Chihiro's Spiriting Away", "千と千尋の神隠し", "Sengoku Youko: Senma Konton-hen", "Sengoku Youko Part 2"], "top_ids": [44685, 199, 58488]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "dr stone", "hit": true, "position": 8, "kind": "title_exact", "n_returned": 10, "duration_ms": 2126.1, "error": null, "top_titles": ["Dr. Stone: Stone Wars - Kaisen Zenya Special Eizou", "Dr. Stone: New World Part 2", "Dr. Stone: Ryuusui"], "top_ids": [43555, 55644, 50612]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "千與千尋", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3554.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "コードギアス 反逆のルルーシュ R2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2946.5, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch R2", "Code Geass: Hangyaku no Lelouch R2 Picture Drama", "Code Geass: Hangyaku no Lelouch R2 Special Edition - Zero Requiem"], "top_ids": [2904, 5163, 6768]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "どくたーすとーん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12182.8, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "千與千尋", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4706.6, "error": null, "top_titles": ["Sen to Chihiro no Kamikakushi", "Sen and Chihiro's Spiriting Away", "千と千尋の神隠し", "Sengoku Youko: Senma Konton-hen", "Sengoku Youko Part 2", "Sengoku Youko: The Thousandfold Chaos Arc", "Senjuushi", "千銃士"], "top_ids": [199, 58488, 37571]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "ゔぁいおれっと・えゔぁーがーでん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7009.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "千與千尋", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2598.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "Code Geass 反叛的鲁路修R2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2363.7, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch R2", "Code Geass: Hangyaku no Lelouch R2 Picture Drama", "Code Geass: Hangyaku no Lelouch R2 Omake Flash"], "top_ids": [2904, 5163, 9591]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "石纪元", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 2682.5, "error": null, "top_titles": ["Dr. STONE", "Dr.STONE", "Dr. STONE: STONE WARS", "Dr.STONE STONE WARS", "Dr. STONE: NEW WORLD Part 2", "Dr. STONE New World Part 2", "Dr.STONE NEW WORLD 第2クール"], "top_ids": [105333, 113936, 162670]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "千與千尋", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2542.0, "error": null, "top_titles": ["Sen to Chihiro no Kamikakushi", "Sen and Chihiro's Spiriting Away", "千と千尋の神隠し", "Sengoku Youko: Senma Konton-hen", "Sengoku Youko Part 2", "Sengoku Youko: The Thousandfold Chaos Arc", "Senjuushi", "千銃士"], "top_ids": [199, 58488, 37571]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "紫罗兰永恒花园", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2895.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "Code Geass 反叛的魯路修R2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2606.6, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch R2", "Code Geass: Hangyaku no Lelouch R2 Picture Drama", "Code Geass: Hangyaku no Lelouch R2 Omake Flash"], "top_ids": [2904, 5163, 9591]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "千与千寻", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3565.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "神隱少女", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2536.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "石紀元", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5395.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "神隐少女", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2238.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "叛逆的魯魯修", "hit": true, "position": 3, "kind": "title_substring", "n_returned": 10, "duration_ms": 7361.8, "error": null, "top_titles": ["Hangyakusei Million Arthur", "Hangyakusei Million Arthur PV", "Wo de Ni Tian Shen Qi"], "top_ids": [37555, 38744, 37564]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "바이올렛 에버가든", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8442.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "Dr.STONE 新石紀 第一季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3922.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "센과치히로의행방불명", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2920.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "千与千寻", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12185.6, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Spirited Away", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2794.5, "error": null, "top_titles": ["Spirited Away", "Sen and Chihiro's Spiriting Away", "Piyopiyo Baba", "Peeping Granny", "Little Nemo Pilot"], "top_ids": ["176", "49310", "7029"]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Violet Evergarden", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 4, "duration_ms": 4718.5, "error": null, "top_titles": ["Violet Evergarden I: Eternity and the Auto Memory Doll", "Haruka Fujita", "Reiko Yoshida", "Violet Evergarden: The Movie", "Taichi Ishidate", "Violet Evergarden"], "top_ids": ["22377", "22376", "21959"]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "叛逆的鲁鲁修", "hit": true, "position": 9, "kind": "title_substring", "n_returned": 10, "duration_ms": 7106.8, "error": null, "top_titles": ["Pipilu He Lu Xixi: 309 Anshi", "Qiao Shou Luban", "Xiao Ji Lu Bi"], "top_ids": [60454, 47272, 46969]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "Dr.STONE 新石纪 第一季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7526.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "神隱少女", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5023.8, "error": null, "top_titles": ["Wo Bushi Xi Shen", "I Am Not the God of Drama", "我不是戏神", "Yuanshen☆FES 2026 Huodong PV", "原神☆FES 2026 活动PV", "Genshin Impact☆FES 2026 Event PV", "Kami no Shizuku", "Les Gouttes de Dieu"], "top_ids": [63984, 62997, 62981]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "Code Geass 反叛的魯路修", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 10, "duration_ms": 2166.6, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch", "Code Geass: Hangyaku no Lelouch DVD Magazine Picture Drama", "Code Geass: Fukkatsu no Lelouch"], "top_ids": [1575, 41075, 34437]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "닥터 스톤", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 1906.6, "error": null, "top_titles": ["Dr. STONE: STONE WARS", "Dr.STONE STONE WARS"], "top_ids": [113936]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "spirited away", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5003.2, "error": null, "top_titles": ["Spirited Away", "Sen and Chihiro's Spiriting Away", "Piyopiyo Baba", "Peeping Granny", "Little Nemo Pilot"], "top_ids": ["176", "49310", "7029"]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "violet evergarden", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 4, "duration_ms": 3649.7, "error": null, "top_titles": ["Violet Evergarden I: Eternity and the Auto Memory Doll", "Haruka Fujita", "Reiko Yoshida", "Violet Evergarden: The Movie", "Taichi Ishidate", "Violet Evergarden"], "top_ids": ["22377", "22376", "21959"]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "神隐少女", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4743.9, "error": null, "top_titles": ["Wo Bushi Xi Shen", "I Am Not the God of Drama", "我不是戏神", "Yuanshen☆FES 2026 Huodong PV", "原神☆FES 2026 活动PV", "Genshin Impact☆FES 2026 Event PV", "Kami no Shizuku", "Les Gouttes de Dieu"], "top_ids": [63984, 62997, 62981]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Dr. Stone", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 3725.8, "error": null, "top_titles": ["Dr. STONE", "Dr.STONE", "Dr. STONE: STONE WARS", "Dr.STONE STONE WARS", "Dr. STONE: Ryuusui", "Dr. STONE Special Episode – RYUSUI", "Dr.STONE 龍水"], "top_ids": [105333, 113936, 142876]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ヴァイオレット・エヴァーガーデン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 3439.2, "error": null, "top_titles": ["Violet Evergarden", "Violet Evergarden Special", "Violet Evergarden Extra Episode", "Violet Evergarden Episode 14", "Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou"], "top_ids": ["12230", "41155", "42340"]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "센과치히로의행방불명", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3726.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "dr stone", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 1721.7, "error": null, "top_titles": ["Dr. STONE", "Dr.STONE", "Dr. STONE: STONE WARS", "Dr.STONE STONE WARS", "Dr. STONE: Ryuusui", "Dr. STONE Special Episode – RYUSUI", "Dr.STONE 龍水"], "top_ids": [105333, 113936, 142876]} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Spirited Away", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2314.8, "error": null, "top_titles": ["Sen to Chihiro no Kamikakushi", "Sen and Chihiro's Spiriting Away", "千と千尋の神隠し", "Nippon-ichi no Otoko no Tamashii", "Nihon-ichi no Otoko no Tamashii", "Most Spirited Man in Japan", "Nippon-ichi no Otoko no Tamashii 2", "Nihon-ichi no Otoko no Tamashii 2"], "top_ids": [199, 8890, 8891]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "ゔぁいおれっと・えゔぁーがーでん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3965.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "紫罗兰永恒花园", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2594.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "Code Geass 反叛的鲁路修", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 10, "duration_ms": 14331.5, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch", "Code Geass: Hangyaku no Lelouch DVD Magazine Picture Drama", "Code Geass: Fukkatsu no Lelouch"], "top_ids": [1575, 41075, 34437]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "紫羅蘭永恆花園", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3217.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "코드 기아스 반역의 를르슈", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 2525.3, "error": null, "top_titles": ["Code Name X"], "top_ids": [56354]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "チェンソーマン", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13246.1, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 43, "mal_id": 199, "popularity": 45, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "spirited away", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3682.6, "error": null, "top_titles": ["Sen to Chihiro no Kamikakushi", "Sen and Chihiro's Spiriting Away", "千と千尋の神隠し", "Nippon-ichi no Otoko no Tamashii", "Nihon-ichi no Otoko no Tamashii", "Most Spirited Man in Japan", "Nippon-ichi no Otoko no Tamashii 2", "Nihon-ichi no Otoko no Tamashii 2"], "top_ids": [199, 8890, 8891]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "コードギアス 反逆のルルーシュ R2", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 7885.7, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch R2", "Code Geass: Lelouch of the Rebellion R2", "コードギアス 反逆のルルーシュ R2"], "top_ids": [2904]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "바이올렛 에버가든", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2625.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "Code Geass 反叛的鲁路修R2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2661.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ヴァイオレット・エヴァーガーデン", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 4409.1, "error": null, "top_titles": ["Violet Evergarden", "ヴァイオレット・エヴァーガーデン", "Lantis", "Violet Evergarden CMs", "Kyoto Animation", "Violet Evergarden Movie", "Gekijouban Violet Evergarden", "劇場版 ヴァイオレット・エヴァーガーデン"], "top_ids": [33352, 42166, 37987]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Violet Evergarden", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 3756.8, "error": null, "top_titles": ["Violet Evergarden", "Violet Evergarden the Movie", "Violet Evergarden movie", "Violet Evergarden Special", "Violet Evergarden Extra Episode", "Violet Evergarden Episode 14"], "top_ids": ["12230", "41450", "41155"]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "ちぇんそーまん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6147.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "ゔぁいおれっと・えゔぁーがーでん", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2956.5, "error": null, "top_titles": ["Zettai Zetsumei Dangerous Jiisan (2004)", "Grandpa Danger", "絶体絶命でんぢゃらすじーさん", "Zettai Zetsumei Dangerous Jiisan (2005)", "Comedy", "Dangerous Jiisan Ja", "でんぢゃらすじーさん邪", "J.C.Staff"], "top_ids": [10987, 22709, 14631]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "Code Geass 反叛的魯路修R2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5115.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "链锯人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2738.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "叛逆的魯魯修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1492.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "鏈鋸人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1504.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "紫罗兰永恒花园", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 3469.9, "error": null, "top_titles": ["Meide Huayuan", "美德花园", "Fantasy", "Ben Ben de Xingfu Shenghuo: Xingfu Huayuan", "笨笨的幸福生活之幸福花园", "Kids", "Tian Tian Quan Baobei: Mifeng Huayuan", "甜甜圈宝贝之蜜蜂花园"], "top_ids": [45475, 46699, 46592]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Code Geass: Lelouch of the Rebellion R2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12285.8, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "violet evergarden", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 3413.3, "error": null, "top_titles": ["Violet Evergarden", "Violet Evergarden the Movie", "Violet Evergarden movie", "Violet Evergarden Special", "Violet Evergarden Extra Episode", "Violet Evergarden Episode 14"], "top_ids": ["12230", "41450", "41155"]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "紫羅蘭永恆花園", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 2722.9, "error": null, "top_titles": ["Anime Himitsu no Hanazono", "The Animated Secret Garden", "Secret Flower Garden", "Xiangle Huayuan", "享樂花園", "The Garden of Delights"], "top_ids": [2810, 60272]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "체인소맨", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3574.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "叛逆的鲁鲁修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4465.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "바이올렛 에버가든", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2574.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "code geass lelouch of the rebellion r2", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2904.6, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch R2 Omake Flash", "Code Geass: Hangyaku no Lelouch R2", "Code Geass: Hangyaku no Lelouch R2 Picture Drama"], "top_ids": [9591, 2904, 5163]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Chainsaw Man", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 4, "duration_ms": 4892.4, "error": null, "top_titles": ["Chainsaw Man Assassins Arc", "Tatsuki Fujimoto", "Kazutaka Sugiyama", "Chainsaw Man - The Compilation: Part 1 & 2", "Tatsuya Yoshihara", "Hiroshi Seko", "Chainsaw Man – The Movie: Reze Arc"], "top_ids": ["38158", "37643", "31068"]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "チェンソーマン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 7646.5, "error": null, "top_titles": ["Chainsaw Man", "Chainsawman", "Chainsaw Man: Reze-hen", "Gekijouban Chainsaw Man: Reze-hen", "劇場版 チェンソーマン レゼ篇", "Chainsaw Man Recap", "csm", "Chainsaw Man Soushuuhen"], "top_ids": ["43806", "48323", "50120"]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2164.6, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen OVA"], "top_ids": [37999, 40591, 43609]} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Violet Evergarden", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4374.3, "error": null, "top_titles": ["Violet Evergarden", "ヴァイオレット・エヴァーガーデン", "Lantis", "Violet Evergarden Movie", "Gekijouban Violet Evergarden", "劇場版 ヴァイオレット・エヴァーガーデン", "Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou", "Violet Evergarden Side Story: Eternity and the Auto Memory Doll"], "top_ids": [33352, 37987, 39741]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "Code Geass 反叛的魯路修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8576.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_jaconv_norm", "query": "かぐや様は告らせたいー天才たちの恋愛頭脳戦ー", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3502.0, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen OVA"], "top_ids": [40591, 37999, 43609]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "ちぇんそーまん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4089.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "Code Geass 反叛的鲁路修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3827.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "chainsaw man", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 4, "duration_ms": 3000.4, "error": null, "top_titles": ["Chainsaw Man Assassins Arc", "Tatsuki Fujimoto", "Kazutaka Sugiyama", "Chainsaw Man - The Compilation: Part 1 & 2", "Tatsuya Yoshihara", "Hiroshi Seko", "Chainsaw Man – The Movie: Reze Arc"], "top_ids": ["38158", "37643", "31068"]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "链锯人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3352.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "青春ブタ野郎はバニーガール先輩の夢を見ない", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2261.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "鏈鋸人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1729.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 44, "mal_id": 33352, "popularity": 46, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "violet evergarden", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2772.6, "error": null, "top_titles": ["Violet Evergarden", "ヴァイオレット・エヴァーガーデン", "Lantis", "Violet Evergarden Movie", "Gekijouban Violet Evergarden", "劇場版 ヴァイオレット・エヴァーガーデン", "Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou", "Violet Evergarden Side Story: Eternity and the Auto Memory Doll"], "top_ids": [33352, 37987, 39741]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "青春猪头少年不会梦到兔女郎学姐", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3580.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "鏈鋸人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3382.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "チェンソーマン", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 3393.0, "error": null, "top_titles": ["Chainsaw Man", "CSM", "チェンソーマン", "Chainsaw Man Movie: Reze-hen", "Gekijouban Chainsaw Man: Reze-hen", "劇場版 チェンソーマン レゼ篇", "Chainsaw Man Recap", "Chainsaw Man Soushuuhen"], "top_ids": [44511, 57555, 62352]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "청춘 돼지는 바니걸 선배의 꿈을 꾸지 않는다", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2495.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "链锯人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2714.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "ちぇんそーまん", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2637.0, "error": null, "top_titles": ["Ai Mai! Moe Can Change!", "あいまい! 萌えCanちぇんじ!", "Frontier Works", "Chen-Kuro Gakuen", "Chain Chronicle Gakuen", "ちぇんくろ学園", "Chein Kuro-Nikuru!!", "Chain Chronican Black Shorts"], "top_ids": [12501, 34762, 34765]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "辉告", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12182.0, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "輝告", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2706.5, "error": null, "top_titles": ["Kokuhaku……", "Aoi Kokuhaku", "Fumiko no Kokuhaku"], "top_ids": [54353, 5560, 8187]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "코드 기아스 반역의 를르슈", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12333.7, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Rascal Does Not Dream of Bunny Girl Senpai", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 4582.6, "error": null, "top_titles": ["Rascal Does Not Dream of Bunny Girl Senpai", "Sōichi Masui", "Masahiro Yokotani"], "top_ids": ["20848"]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "链锯人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4193.0, "error": null, "top_titles": ["Guimi Zhi Zhu: Wu Mian Ren", "Lord of Mysteries: Faceless Arc", "诡秘之主 无面人篇", "Wareware wa Uchuujin", "我々は宇宙人", "We Are Aliens"], "top_ids": [63632, 63632, 62973]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Code Geass: Lelouch of the Rebellion R2", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3684.4, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch R2", "Code Geass: Lelouch of the Rebellion R2", "コードギアス 反逆のルルーシュ R2", "Code Geass: Hangyaku no Lelouch R2 FLASH Flash - Kaette Kita BABA Gekijou", "Code Geass: Lelouch of the Rebellion R2: Flash Specials", "コードギアス 反逆のルルーシュ おまけFLASH「帰ってきたBABA劇場」"], "top_ids": [2904, 9591]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "鏈鋸人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3836.0, "error": null, "top_titles": ["Guimi Zhi Zhu: Wu Mian Ren", "Lord of Mysteries: Faceless Arc", "诡秘之主 无面人篇", "Wareware wa Uchuujin", "我々は宇宙人", "We Are Aliens"], "top_ids": [63632, 63632, 62973]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "rascal does not dream of bunny girl senpai", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2846.4, "error": null, "top_titles": ["Rascal Does Not Dream of Bunny Girl Senpai", "Sōichi Masui", "Masahiro Yokotani"], "top_ids": ["20848"]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "체인소맨", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12275.5, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "code geass lelouch of the rebellion r2", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2512.0, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch R2", "Code Geass: Lelouch of the Rebellion R2", "コードギアス 反逆のルルーシュ R2", "Code Geass: Hangyaku no Lelouch R2 FLASH Flash - Kaette Kita BABA Gekijou", "Code Geass: Lelouch of the Rebellion R2: Flash Specials", "コードギアス 反逆のルルーシュ おまけFLASH「帰ってきたBABA劇場」"], "top_ids": [2904, 9591]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ドクターストーン", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2402.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "どくたーすとーん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2545.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "카구야 님은 고백받고 싶어 ~천재들의 연애 두뇌전~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13237.3, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 3558.9, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", "Kaguya-sama: Love is War", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen OVA", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~OVA", "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", "Kaguya-sama: Love is War?", "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~"], "top_ids": [101921, 125368, 112641]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "ja", "backend": "anilist", "variant": "enhance_jaconv_norm", "query": "かぐや様は告らせたいー天才たちの恋愛頭脳戦ー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2581.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "石纪元", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3347.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Chainsaw Man", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7270.7, "error": null, "top_titles": ["Chainsaw Man", "Chainsawman", "Chainsaw Man: Reze-hen", "Gekijouban Chainsaw Man: Reze-hen", "劇場版 チェンソーマン レゼ篇", "Chainsaw Man Recap", "csm", "Chainsaw Man Soushuuhen"], "top_ids": ["43806", "48323", "50120"]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "鏈鋸人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 11380.5, "error": null, "top_titles": ["Guimi Zhi Zhu: Wu Mian Ren", "Lord of Mysteries: Faceless Arc", "诡秘之主 无面人篇", "Wareware wa Uchuujin", "我々は宇宙人", "We Are Aliens"], "top_ids": [63632, 63632, 62973]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "辉告", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2992.8, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", "Kaguya-sama: Love is War", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", "Kaguya-sama: Love is War?", "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai: Ultra Romantic", "Kaguya-sama: Love is War -Ultra Romantic-"], "top_ids": [101921, 112641, 125367]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "链锯人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3591.8, "error": null, "top_titles": ["Guimi Zhi Zhu: Wu Mian Ren", "Lord of Mysteries: Faceless Arc", "诡秘之主 无面人篇", "Wareware wa Uchuujin", "我々は宇宙人", "We Are Aliens"], "top_ids": [63632, 63632, 62973]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "Dr.STONE 新石紀 第一季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6216.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "체인소맨", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4063.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "輝告", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6356.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Kaguya-sama: Love is War", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12172.9, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "닥터 스톤", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3702.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "카구야 님은 고백받고 싶어 ~천재들의 연애 두뇌전~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4757.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "chainsaw man", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2651.8, "error": null, "top_titles": ["Chainsaw Man", "Chainsawman", "Chainsaw Man: Reze-hen", "Gekijouban Chainsaw Man: Reze-hen", "劇場版 チェンソーマン レゼ篇", "Chainsaw Man Recap", "csm", "Chainsaw Man Soushuuhen"], "top_ids": ["43806", "48323", "50120"]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Dr. Stone", "hit": true, "position": 7, "kind": "title_exact", "n_returned": 8, "duration_ms": 5789.0, "error": null, "top_titles": ["Dr. Stone: Science Future", "Shūhei Matsushita", "Kurasumi Sunayama", "degochi"], "top_ids": ["37873", "35383", "31089"]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Kaguya-sama: Love is War", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 3842.2, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", "Kaguya-sama: Love is War", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", "Kaguya-sama: Love is War?", "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen OVA", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~OVA"], "top_ids": [101921, 112641, 125368]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "kaguya sama love is war", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2964.2, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Ultra Romantic Teaser PV - Ishigami Yuu wa Kataritai", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen"], "top_ids": [50325, 40591, 37999]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Chainsaw Man", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12184.2, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "青春ブタ野郎はバニーガール先輩の夢を見ない", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 5332.3, "error": null, "top_titles": ["Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai Picture Drama"], "top_ids": ["41056", "42087"]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "デス・パレード", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4722.2, "error": null, "top_titles": ["Death Parade", "Parade Parade", "Death Note"], "top_ids": [28223, 1390, 1535]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "kaguya sama love is war", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 5004.5, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", "Kaguya-sama: Love is War", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", "Kaguya-sama: Love is War?", "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen OVA", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~OVA"], "top_ids": [101921, 112641, 125368]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "です・ぱれーど", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2281.4, "error": null, "top_titles": ["[Watashi no Ofuru de Waruin dakedo] to Okaasama (Heroine) ni Torimaki wo Oshitsukerare, Totsuida Henkyou demo Yome Atsukai Saremasen ga, Okage de Jiyuu ni Ikiraremasu!", "Super Nuko ni Narenkatta", "Mouse Cursor de Genjitsu wo Sousa Dekiru You ni Natta node, Onna no Ko wo Ippai Click Shima~su"], "top_ids": [62520, 58255, 63381]} +{"sample_index": 45, "mal_id": 44511, "popularity": 47, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "chainsaw man", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2887.0, "error": null, "top_titles": ["Chainsaw Man", "CSM", "チェンソーマン", "Chainsaw Man Movie: Reze-hen", "Gekijouban Chainsaw Man: Reze-hen", "劇場版 チェンソーマン レゼ篇", "Chainsaw Man Recap", "Chainsaw Man Soushuuhen"], "top_ids": [44511, 57555, 62352]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "デス・パレード", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2737.3, "error": null, "top_titles": ["Death Parade", "デス・パレード"], "top_ids": [20931]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "です・ぱれーど", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1872.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "青春ブタ野郎はバニーガール先輩の夢を見ない", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3222.6, "error": null, "top_titles": ["Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", "AoButa", "青春ブタ野郎はバニーガール先輩の夢を見ない", "Seishun Buta Yarou wa Dear Friend no Yume wo Minai", "青春ブタ野郎はディアフレンドの夢を見ない", "Rascal Does Not Dream of a Dear Friend"], "top_ids": [37450, 62582, 62582]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "死亡游行", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4163.1, "error": null, "top_titles": ["Jujutsu Kaisen Movie: Shibuya Jihen Tokubetsu Henshuu-ban x Shimetsu Kaiyuu Senkou Jouei", "Haha Xiyou Xing", "Laoshu Biji: Xing You Tianxia"], "top_ids": [62392, 45242, 46997]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "死亡游行", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3436.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "青春猪头少年不会梦到兔女郎学姐", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12961.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "死亡遊行", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2837.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "青春豬頭少年不會夢到兔女郎學姐", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2525.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "dr stone", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3582.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "데스 퍼레이드", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3638.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "청춘 돼지는 바니걸 선배의 꿈을 꾸지 않는다", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4065.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "コードギアス 反逆のルルーシュ R2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3583.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "青春猪头少年不会梦到兔女郎学姐", "hit": true, "position": 3, "kind": "id", "n_returned": 10, "duration_ms": 10129.6, "error": null, "top_titles": ["Seishun", "青春", "Youth", "Seishun Buta Yarou wa Dear Friend no Yume wo Minai", "青春ブタ野郎はディアフレンドの夢を見ない", "Rascal Does Not Dream of a Dear Friend"], "top_ids": [40633, 62582, 62582]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Rascal Does Not Dream of Bunny Girl Senpai", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 2517.0, "error": null, "top_titles": ["Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai Picture Drama", "Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai"], "top_ids": ["41056", "42087", "41991"]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "Code Geass 反叛的鲁路修R2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2409.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Death Parade", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3480.1, "error": null, "top_titles": ["Death Parade", "デス・パレード"], "top_ids": [20931]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "死亡遊行", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 12610.2, "error": null, "top_titles": ["Shibou Yuugi de Meshi wo Kuu.", "Shibou Yuugi de Meshi wo Kuu. 44: Cloudy Beach", "Yuuseiboushi"], "top_ids": [59711, 63819, 49838]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "青春豬頭少年不會夢到兔女郎學姐", "hit": true, "position": 3, "kind": "id", "n_returned": 10, "duration_ms": 3692.0, "error": null, "top_titles": ["Seishun", "青春", "Youth", "Seishun Buta Yarou wa Dear Friend no Yume wo Minai", "青春ブタ野郎はディアフレンドの夢を見ない", "Rascal Does Not Dream of a Dear Friend"], "top_ids": [40633, 62582, 62582]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "데스 퍼레이드", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2528.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "叛逆的魯魯修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4840.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "death parade", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 1566.4, "error": null, "top_titles": ["Death Parade", "デス・パレード"], "top_ids": [20931]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "rascal does not dream of bunny girl senpai", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 4065.9, "error": null, "top_titles": ["Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai Picture Drama", "Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai"], "top_ids": ["41056", "42087", "41991"]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Death Parade", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3198.7, "error": null, "top_titles": ["Death Parade", "Parade Parade", "Parade"], "top_ids": [28223, 1390, 57545]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "Code Geass 反叛的魯路修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2429.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "청춘 돼지는 바니걸 선배의 꿈을 꾸지 않는다", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 5883.6, "error": null, "top_titles": ["Cheongchun Blossom: Uliui Bom", "청춘 블라썸: 우리의 봄", "Seasons of Blossom"], "top_ids": [63964]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 2507.5, "error": null, "top_titles": ["Boku no Hero Academia", "My Hero Academia", "僕のヒーローアカデミア", "Boku no Hero Academia 4", "My Hero Academia Season 4", "僕のヒーローアカデミア4", "Boku no Hero Academia 2", "My Hero Academia Season 2"], "top_ids": [21459, 104276, 21856]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "코드 기아스 반역의 를르슈", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2125.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ドクターストーン", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 4, "duration_ms": 3966.3, "error": null, "top_titles": ["Dr. STONE: SCIENCE FUTURE", "Dr.STONE Season 4", "Dr.STONE 第4期", "Dr.STONE SCIENCE FUTURE Part 2", "Dr.STONE Season 4 Part 2", "ドクターストーン", "Dr. STONE: SCIENCE FUTURE Part 3", "Dr. STONE SCIENCE FUTURE Cour 3"], "top_ids": ["48342", "49751", "50187"]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "我的英雄学院 4", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2950.1, "error": null, "top_titles": ["Boku no Hero Academia 4", "My Hero Academia Season 4", "僕のヒーローアカデミア4"], "top_ids": [104276]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Code Geass: Lelouch of the Rebellion R2", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 2, "duration_ms": 2479.4, "error": null, "top_titles": ["Code Geass: Lelouch of the Rebellion R2 Special Edition 'Zero Requiem'", "Gorō Taniguchi", "Ichirō Ōkōchi", "Code Geass: Lelouch of the Rebellion R2"], "top_ids": ["15381", "9173"]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "death parade", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2583.0, "error": null, "top_titles": ["Death Parade", "Parade Parade", "Parade"], "top_ids": [28223, 1390, 57545]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Rascal Does Not Dream of Bunny Girl Senpai", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5534.0, "error": null, "top_titles": ["Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", "AoButa", "青春ブタ野郎はバニーガール先輩の夢を見ない", "Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai", "青春ブタ野郎はゆめみる少女の夢を見ない", "Rascal Does Not Dream of a Dreaming Girl", "Seishun Buta Yarou wa Odekake Sister no Yume wo Minai", "青春ブタ野郎はおでかけシスターの夢を見ない"], "top_ids": [37450, 38329, 53129]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "どくたーすとーん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3545.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 2141.8, "error": null, "top_titles": ["Boku no Hero Academia 5th Season", "Boku no Hero Academia 3rd Season", "Boku no Hero Academia 2nd Season"], "top_ids": [41587, 36456, 33486]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "我的英雄學院 4", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3992.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "石纪元", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 2, "duration_ms": 2549.6, "error": null, "top_titles": ["Dr.STONE: NEW WORLD", "石纪元第三季", "Dr.STONE Season 3", "Dr. STONE: NEW WORLD Part 2", "Dr.STONE Season 3 Part 2"], "top_ids": ["44289", "47246"]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "我的英雄学院 4", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 2370.2, "error": null, "top_titles": ["Kexue Guai Boshi: Shenqi de Taiyang Xueyuan", "Jijia Yingxiong Movie: Wo Yu Wo Dengyu Wuxian Da", "Mama wa Shougaku 4-nensei"], "top_ids": [46953, 56144, 333]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "石紀元", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 2, "duration_ms": 3098.0, "error": null, "top_titles": ["Dr.STONE: NEW WORLD", "石纪元第三季", "Dr.STONE Season 3", "Dr. STONE: NEW WORLD Part 2", "Dr.STONE Season 3 Part 2"], "top_ids": ["44289", "47246"]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "我的英雄學院 4", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2890.1, "error": null, "top_titles": ["Jijia Yingxiong Movie: Wo Yu Wo Dengyu Wuxian Da", "Little Charo 4: Eigo de Aruku New York", "Kaixin Chaoren: Yingxiong de Xin"], "top_ids": [56144, 35476, 57384]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "code geass lelouch of the rebellion r2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2829.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "Dr.STONE 新石紀 第一季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2525.2, "error": null, "top_titles": ["Dr. Stone", "Dr. Stone: Stone Wars", "Dr. Stone 2nd Season", "Dr. Stone Second Season", "Dr.STONE: NEW WORLD", "石纪元第三季", "Dr.STONE Season 3"], "top_ids": ["42080", "42867", "44289"]} +{"sample_index": 46, "mal_id": 37450, "popularity": 48, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "rascal does not dream of bunny girl senpai", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5194.9, "error": null, "top_titles": ["Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", "AoButa", "青春ブタ野郎はバニーガール先輩の夢を見ない", "Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai", "青春ブタ野郎はゆめみる少女の夢を見ない", "Rascal Does Not Dream of a Dreaming Girl", "Seishun Buta Yarou wa Odekake Sister no Yume wo Minai", "青春ブタ野郎はおでかけシスターの夢を見ない"], "top_ids": [37450, 38329, 53129]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "나의 히어로 아카데미아 4기", "hit": true, "position": 5, "kind": "title_exact", "n_returned": 10, "duration_ms": 3033.1, "error": null, "top_titles": ["Psychic Hero", "Hero Circle", "Biklonz 4th Season"], "top_ids": [48273, 56356, 59964]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "나의 히어로 아카데미아 4기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8339.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "Dr.STONE 新石纪 第一季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3526.8, "error": null, "top_titles": ["Dr. Stone", "Dr. Stone: Stone Wars", "Dr. Stone 2nd Season", "Dr. Stone Second Season", "Dr.STONE: NEW WORLD", "石纪元第三季", "Dr.STONE Season 3"], "top_ids": ["42080", "42867", "44289"]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5241.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "My Hero Academia Season 4", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3998.0, "error": null, "top_titles": ["Boku no Hero Academia 4th Season", "[Oshi no Ko] 4th Season", "Boku no Hero Academia 5th Season"], "top_ids": [38408, 63794, 41587]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ドクターストーン", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4690.9, "error": null, "top_titles": ["Dr. Stone", "ドクターストーン", "TOHO animation", "Dr. Stone: Stone Wars", "Dr. Stone 2nd Season", "Dr. Stone Second Season", "JoJo no Kimyou na Bouken Part 6: Stone Ocean", "JoJo's Bizarre Adventure Part 6: Stone Ocean"], "top_ids": [38691, 40852, 48661]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "My Hero Academia Season 4", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 4910.4, "error": null, "top_titles": ["Boku no Hero Academia 4", "My Hero Academia Season 4", "僕のヒーローアカデミア4", "Boku no Hero Academia THE MOVIE: YOU'RE NEXT", "My Hero Academia: You’re Next", "僕のヒーローアカデミア THE MOVIE: ユア ネクスト"], "top_ids": [104276, 168013]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "닥터 스톤", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 3364.6, "error": null, "top_titles": ["Stone Age", "Stone Age Episode 0", "Stone Age: Jeonseol-ui Pes-eul Chaj-aseo"], "top_ids": ["40571", "40572"]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "どくたーすとーん", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3358.7, "error": null, "top_titles": ["Never Ending Story", "ねばーえんでぃんぐすとーり", "Music", "Yeastken.", "いーすとけん。", "Yeastken", "Ai to Yuuki no Pig Girl Tonde Buurin", "Ai to Yuki no Piggu Garu Tonde Burin"], "top_ids": [59516, 38827, 2041]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Dr. Stone", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2777.3, "error": null, "top_titles": ["Dr. Stone", "Dr. Stone: Stone Wars", "Dr. Stone 2nd Season", "Dr. Stone Second Season", "Dr.STONE: NEW WORLD", "石纪元第三季", "Dr.STONE Season 3"], "top_ids": ["42080", "42867", "44289"]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia season 4", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 1895.5, "error": null, "top_titles": ["Boku no Hero Academia 4", "My Hero Academia Season 4", "僕のヒーローアカデミア4", "Boku no Hero Academia THE MOVIE: YOU'RE NEXT", "My Hero Academia: You’re Next", "僕のヒーローアカデミア THE MOVIE: ユア ネクスト"], "top_ids": [104276, 168013]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "石纪元", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3497.0, "error": null, "top_titles": ["Taiyou no Ishi feat. eico", "太陽の石 feat eico", "Flower Records", "High School DxD BorN: Ishibumi Ichiei Kanzen Kanshuu! Mousou Bakuyou Kaijo Original Video", "ハイスクールD×D BorN 石踏一榮完全監修!妄想爆揺解除オリジナルビデオ", "High School DxD BorN Specials", "Natsume Yuujinchou: Ishi Okoshi to Ayashiki Raihousha", "夏目友人帳 石起こしと怪しき来訪者"], "top_ids": [60845, 31326, 42894]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia season 4", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4058.0, "error": null, "top_titles": ["Boku no Hero Academia 4th Season", "[Oshi no Ko] 4th Season", "Boku no Hero Academia 5th Season"], "top_ids": [38408, 63794, 41587]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ブラッククローバー", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 3034.0, "error": null, "top_titles": ["Black Clover", "ブラッククローバー", "Black Clover: Jump Festa 2016 Special", "Black Clover 2nd Season", "Black Clover Season 2", "ブラッククローバー 第2期"], "top_ids": [97940, 87528, 195604]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "ぶらっくくろーばー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2486.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ブラッククローバー", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 5, "duration_ms": 3428.3, "error": null, "top_titles": ["Black Clover: Jump Festa 2016 Special", "Black Clover", "Black Clover: Mahou Tei no Ken"], "top_ids": [33950, 34572, 48585]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "dr stone", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2831.4, "error": null, "top_titles": ["Dr. Stone", "Dr. Stone: Stone Wars", "Dr. Stone 2nd Season", "Dr. Stone Second Season", "Dr.STONE: NEW WORLD", "石纪元第三季", "Dr.STONE Season 3"], "top_ids": ["42080", "42867", "44289"]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "石紀元", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5462.0, "error": null, "top_titles": ["Taiyou no Ishi feat. eico", "太陽の石 feat eico", "Flower Records", "High School DxD BorN: Ishibumi Ichiei Kanzen Kanshuu! Mousou Bakuyou Kaijo Original Video", "ハイスクールD×D BorN 石踏一榮完全監修!妄想爆揺解除オリジナルビデオ", "High School DxD BorN Specials", "Natsume Yuujinchou: Ishi Okoshi to Ayashiki Raihousha", "夏目友人帳 石起こしと怪しき来訪者"], "top_ids": [60845, 31326, 42894]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "ja", "backend": "ann", "variant": "enhance_jaconv_norm", "query": "かぐや様は告らせたいー天才たちの恋愛頭脳戦ー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14032.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "ぶらっくくろーばー", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2792.4, "error": null, "top_titles": ["Tororo Okura Mekabu Nattou", "Kerokero Keroppi no Ganbare! Keroppees", "Ganbare! Chrome"], "top_ids": [56651, 22605, 60632]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "黑色五叶草", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3622.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "コードギアス 反逆のルルーシュ R2", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 6, "duration_ms": 3618.8, "error": null, "top_titles": ["Code Geass: Lelouch of the Rebellion R2 Special Edition Zero Requiem", "Code Geass: Lelouch of the Rebellion R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season", "Code Geass: Hangyaku no Lelouch R2 Picture Drama", "Code Geass: Hangyaku no Lelouch R2 Specials"], "top_ids": ["4705", "2634", "3960"]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "Dr.STONE 新石紀 第一季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3413.4, "error": null, "top_titles": ["Xin Baoxiao Xiaoyuan", "新爆笑校园 第一季", "Funny School", "Ling Long Di Yi Ji Jing Bian Ban", "灵笼第一季精编版", "Ling Cage Edited Ver.", "Shi Wan Ge Leng Xiaohua", "One Hundred Thousand Bad Jokes Season 1"], "top_ids": [63094, 61747, 33193]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "辉告", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3440.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "黑色五葉草", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2451.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "Code Geass 反叛的鲁路修R2", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3498.6, "error": null, "top_titles": ["Code Geass: Lelouch of the Rebellion", "Code Geass: Hangyaku no Lelouch", "Code Geass: Lelouch of the Rebellion R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season", "Code Geass: Lelouch of the Re;surrection"], "top_ids": ["1415", "2634", "12767"]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "黑色五葉草", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2378.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "카구야 님은 고백받고 싶어 ~천재들의 연애 두뇌전~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4325.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "黑色五叶草", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6789.3, "error": null, "top_titles": ["Yongchun Baihe Quan: Wuse Yu Chuanqi", "Sora Iro Hana Iro", "Kimi-iro, Boku-iro"], "top_ids": [46519, 22791, 62710]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "Dr.STONE 新石纪 第一季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6231.8, "error": null, "top_titles": ["Xin Baoxiao Xiaoyuan", "新爆笑校园 第一季", "Funny School", "Ling Long Di Yi Ji Jing Bian Ban", "灵笼第一季精编版", "Ling Cage Edited Ver.", "Shi Wan Ge Leng Xiaohua", "One Hundred Thousand Bad Jokes Season 1"], "top_ids": [63094, 61747, 33193]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "黑色五叶草", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3071.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "Code Geass 反叛的魯路修R2", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 4600.4, "error": null, "top_titles": ["Code Geass: Lelouch of the Rebellion", "Code Geass: Hangyaku no Lelouch", "Code Geass: Lelouch of the Rebellion R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season", "Code Geass: Lelouch of the Re;surrection"], "top_ids": ["1415", "2634", "12767"]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "블랙 클로버", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2611.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Kaguya-sama: Love is War", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 6, "duration_ms": 4883.2, "error": null, "top_titles": ["Kaguya-sama: Love is War -Stairway to Adulthood-", "Mamoru Hatakeyama", "Kei Haneoka", "Kaguya-sama: Love is War -The First Kiss That Never Ends-", "Yasuhiro Nakanishi", "Kaguya-sama: Love is War -Ultra Romantic-"], "top_ids": ["36700", "26033", "24889"]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "黑色五葉草", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4771.9, "error": null, "top_titles": ["Saraiya Goyou", "Yongchun Baihe Quan: Wuse Yu Chuanqi", "Sora Iro Hana Iro"], "top_ids": [7588, 46519, 22791]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "叛逆的魯魯修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2382.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "黑色五葉草", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2629.2, "error": null, "top_titles": ["Saraiya Goyou", "Yongchun Baihe Quan: Wuse Yu Chuanqi", "Sora Iro Hana Iro"], "top_ids": [7588, 46519, 22791]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "叛逆的鲁鲁修", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2469.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Black Clover", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 4234.4, "error": null, "top_titles": ["Black Clover", "ブラッククローバー", "Petit Clover Advance", "プチット・クローバー アドバンス", "Black Clover: Mahou Tei no Ken", "Black Clover: Sword of the Wizard King", "ブラッククローバー 魔法帝の剣"], "top_ids": [97940, 155017, 131680]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "닥터 스톤", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 7219.2, "error": null, "top_titles": ["Stone Age: Jeonseol-ui Pes-eul Chaj-aseo", "스톤에이지: 전설의 펫을 찾아서", "Stone Age: The Legendary Pet"], "top_ids": [36657]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "Code Geass 反叛的魯路修", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2425.7, "error": null, "top_titles": ["Code Geass: Lelouch of the Rebellion", "Code Geass: Hangyaku no Lelouch", "Code Geass: Lelouch of the Rebellion R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season", "Code Geass: Lelouch of the Re;surrection"], "top_ids": ["1415", "2634", "12767"]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "Code Geass 反叛的鲁路修", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3130.5, "error": null, "top_titles": ["Code Geass: Lelouch of the Rebellion", "Code Geass: Hangyaku no Lelouch", "Code Geass: Lelouch of the Rebellion R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season", "Code Geass: Lelouch of the Re;surrection"], "top_ids": ["1415", "2634", "12767"]} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Dr. Stone", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5338.3, "error": null, "top_titles": ["Dr. Stone", "ドクターストーン", "TOHO animation", "Dr. Stone: Stone Wars - Kaisen Zenya Special Eizou", "Dr. Stone: Stone Wars Episode Zero", "Dr. Stone Recap", "Dr. Stone: Science Future Part 2", "Dr. Stone 4th Season Part 2"], "top_ids": [38691, 43555, 61322]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "코드 기아스 반역의 를르슈", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 2676.8, "error": null, "top_titles": ["Detective Conan", "Case Closed: One Truth Prevails", "Mirai Shounen Conan", "The Boy in Future", "Conan, le garçon de l'avenir"], "top_ids": ["210", "276"]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "黑色五叶草", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 8469.3, "error": null, "top_titles": ["Yongchun Baihe Quan: Wuse Yu Chuanqi", "Sora Iro Hana Iro", "Kimi-iro, Boku-iro"], "top_ids": [46519, 22791, 62710]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Code Geass: Lelouch of the Rebellion R2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 2680.0, "error": null, "top_titles": ["Code Geass: Lelouch of the Rebellion R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season", "Code Geass: Lelouch of the Rebellion R2 Special Edition Zero Requiem", "Code Geass: Hangyaku no Lelouch R2 Picture Drama", "Code Geass: Hangyaku no Lelouch R2 Specials"], "top_ids": ["2634", "4705", "3960"]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "블랙 클로버", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 5186.8, "error": null, "top_titles": ["Clover 4/3", "Turning Mecard W: Black Mirror-ui Buhwal", "Taoleujima Beoseuteo: Beullaeg-Eosseolteuui Gwihwan"], "top_ids": [19695, 35545, 48345]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "kaguya sama love is war", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3751.5, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 47, "mal_id": 38691, "popularity": 49, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "dr stone", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4097.4, "error": null, "top_titles": ["Dr. Stone", "ドクターストーン", "TOHO animation", "Dr. Stone: Stone Wars - Kaisen Zenya Special Eizou", "Dr. Stone: Stone Wars Episode Zero", "Dr. Stone Recap", "Dr. Stone: Science Future Part 2", "Dr. Stone 4th Season Part 2"], "top_ids": [38691, 43555, 61322]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Black Clover", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 1895.2, "error": null, "top_titles": ["Black Clover", "Petit Clover Advance", "Black Clover: Jump Festa 2016 Special"], "top_ids": [34572, 39864, 33950]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "code geass lelouch of the rebellion r2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 5201.4, "error": null, "top_titles": ["Code Geass: Lelouch of the Rebellion R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season", "Code Geass: Lelouch of the Rebellion R2 Special Edition Zero Requiem", "Code Geass: Hangyaku no Lelouch R2 Picture Drama", "Code Geass: Hangyaku no Lelouch R2 Specials"], "top_ids": ["2634", "4705", "3960"]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "コードギアス 反逆のルルーシュ R2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4471.8, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season", "Code Geass: Hangyaku no Lelouch R2 Picture Drama", "Code Geass: Hangyaku no Lelouch R2 Specials", "コードギアス 反逆のルルーシュ R2 ピクチャードラマ", "Code Geass: Hangyaku no Lelouch R2 Special Edition - Zero Requiem", "コードギアス 反逆のルルーシュ R2 Special Edition Zero Requiem"], "top_ids": [2904, 5163, 6768]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "デス・パレード", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6687.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "black clover", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 9555.4, "error": null, "top_titles": ["Black Clover", "ブラッククローバー", "Petit Clover Advance", "プチット・クローバー アドバンス", "Black Clover: Mahou Tei no Ken", "Black Clover: Sword of the Wizard King", "ブラッククローバー 魔法帝の剣"], "top_ids": [97940, 155017, 131680]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 4213.3, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2", "Kaguya-sama: Love is War Season 2"], "top_ids": ["41373", "42632"]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "black clover", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5022.3, "error": null, "top_titles": ["Black Clover", "Petit Clover Advance", "Black Clover: Jump Festa 2016 Special"], "top_ids": [34572, 39864, 33950]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "です・ぱれーど", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3598.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "Code Geass 反叛的鲁路修R2", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 5382.8, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch", "コードギアス 反逆のルルーシュ", "Code Geass: Lelouch of the Rebellion", "Code Geass: Hangyaku no Lelouch R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season", "Code Geass: Fukkatsu no Lelouch", "Code Geass: Lelouch of the Resurrection"], "top_ids": [1575, 2904, 34437]} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "東京喰種√A", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 3120.4, "error": null, "top_titles": ["Tokyo Ghoul √A", "東京喰種[トーキョーグール]√A", "Tokyo Ghoul", "東京喰種 トーキョーグール", "Tokyo Ghoul:re", "東京喰種-トーキョーグール-:re"], "top_ids": [20850, 20605, 100240]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_jaconv_norm", "query": "かぐや様は告らせたいー天才たちの恋愛頭脳戦ー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2597.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "東京喰種√A", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3299.3, "error": null, "top_titles": ["Tokyo Ghoul √A", "Tokyo Ghoul", "Tokyo Ghoul:re"], "top_ids": [27899, 22319, 36511]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "Code Geass 反叛的魯路修R2", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 2456.4, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch", "コードギアス 反逆のルルーシュ", "Code Geass: Lelouch of the Rebellion", "Code Geass: Hangyaku no Lelouch R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season", "Code Geass: Fukkatsu no Lelouch", "Code Geass: Lelouch of the Resurrection"], "top_ids": [1575, 2904, 34437]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "死亡游行", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4353.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "ja", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "东京喰种√A", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3528.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "叛逆的魯魯修", "hit": true, "position": 6, "kind": "title_substring", "n_returned": 10, "duration_ms": 4752.3, "error": null, "top_titles": ["Fanren Xiu Xian Zhuan: Mulan Zhi Zhan", "A Mortal's Journey 5th Season", "A Record of a Mortal's Journey to Immortality 5th Season"], "top_ids": [63240, 63240, 63240]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "데스 퍼레이드", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3606.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "东京喰种√A", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3300.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "东京喰种√A", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6019.1, "error": null, "top_titles": ["Tokyo Ghoul √A", "Tensei Kizoku, Kantei Skill de Nariagaru", "Ai Ai Ai Ai♡Ai Love You"], "top_ids": [27899, 55265, 63300]} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "東京喰種√A", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 2014.3, "error": null, "top_titles": ["Tokyo Ghoul √A", "東京喰種[トーキョーグール]√A", "Tokyo Ghoul", "東京喰種 トーキョーグール", "Tokyo Ghoul:re", "東京喰種-トーキョーグール-:re"], "top_ids": [20850, 20605, 100240]} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "东京喰种√A", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2643.8, "error": null, "top_titles": ["Tokyo Ghoul √A", "Tensei Kizoku, Kantei Skill de Nariagaru", "Ai Ai Ai Ai♡Ai Love You"], "top_ids": [27899, 55265, 63300]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Death Parade", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3847.6, "error": null, "top_titles": ["Death Parade", "Yuzuru Tachikawa", "Shinichirō Watanabe"], "top_ids": ["16375"]} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "도쿄 구울 √A", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2621.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "東京喰種√A", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2891.2, "error": null, "top_titles": ["Tokyo Ghoul √A", "Tokyo Ghoul", "Tokyo Ghoul:re"], "top_ids": [27899, 22319, 36511]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "辉告", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14291.9, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Tokyo Ghoul √A", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 4180.1, "error": null, "top_titles": ["Tokyo Ghoul √A", "東京喰種[トーキョーグール]√A", "Tokyo Ghoul", "東京喰種 トーキョーグール", "Tokyo Ghoul: [PINTO]", "東京喰種トーキョーグール【PINTO】"], "top_ids": [20850, 20605, 21326]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "叛逆的鲁鲁修", "hit": true, "position": 6, "kind": "title_substring", "n_returned": 10, "duration_ms": 11289.7, "error": null, "top_titles": ["Fanren Xiu Xian Zhuan: Mulan Zhi Zhan", "A Mortal's Journey 5th Season", "A Record of a Mortal's Journey to Immortality 5th Season"], "top_ids": [63240, 63240, 63240]} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "도쿄 구울 √A", "hit": true, "position": 5, "kind": "title_substring", "n_returned": 10, "duration_ms": 5552.7, "error": null, "top_titles": ["Tensei Kizoku, Kantei Skill de Nariagaru", "Ai Ai Ai Ai♡Ai Love You", "Tenkou-saki no Seiso Karen na Bishoujo ga, Mukashi Danshi to Omotte Issho ni Asonda Osananajimi Datta Ken"], "top_ids": [55265, 63300, 56735]} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "tokyo ghoul a", "hit": true, "position": 1, "kind": "id", "n_returned": 7, "duration_ms": 2774.1, "error": null, "top_titles": ["Tokyo Ghoul", "東京喰種 トーキョーグール", "Tokyo Ghoul √A", "東京喰種[トーキョーグール]√A", "Tokyo Ghoul: [PINTO]", "東京喰種トーキョーグール【PINTO】"], "top_ids": [20605, 20850, 21326]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "輝告", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8069.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "Code Geass 反叛的魯路修", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 6592.4, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch", "コードギアス 反逆のルルーシュ", "Code Geass: Lelouch of the Rebellion", "Code Geass: Hangyaku no Lelouch R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season", "Code Geass: Fukkatsu no Lelouch", "Code Geass: Lelouch of the Resurrection"], "top_ids": [1575, 2904, 34437]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "카구야 님은 고백받고 싶어 ~천재들의 연애 두뇌전~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2615.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Tokyo Ghoul √A", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 9174.1, "error": null, "top_titles": ["Tokyo Ghoul √A", "T7S Longing for Summer Again and Again: Harukaze", "Youkai Gakkou no Sensei Hajimemashita!"], "top_ids": [27899, 34943, 57533]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "Code Geass 反叛的鲁路修", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 3342.7, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch", "コードギアス 反逆のルルーシュ", "Code Geass: Lelouch of the Rebellion", "Code Geass: Hangyaku no Lelouch R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season", "Code Geass: Fukkatsu no Lelouch", "Code Geass: Lelouch of the Resurrection"], "top_ids": [1575, 2904, 34437]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Kaguya-sama: Love is War", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2556.2, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2", "Kaguya-sama: Love is War Season 2", "Kaguya-sama wa Kokurasetai: Ultra Romantic", "Kaguya-sama: Love is War Season 3", "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3"], "top_ids": ["41373", "42632", "43691"]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "death parade", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 11795.5, "error": null, "top_titles": ["Death Parade", "Yuzuru Tachikawa", "Shinichirō Watanabe"], "top_ids": ["16375"]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "코드 기아스 반역의 를르슈", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 2773.6, "error": null, "top_titles": ["Code Name X", "코드네임X", "Action"], "top_ids": [56354]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ワンパンマン 2期", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 10440.8, "error": null, "top_titles": ["One Punch Man 3 Part 2", "One Punch Man Season 3 Part 2", "ワンパンマン 第3期第2クール"], "top_ids": [204747]} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "tokyo ghoul a", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2793.6, "error": null, "top_titles": ["Tokyo Ghoul √A", "T7S Longing for Summer Again and Again: Harukaze", "Youkai Gakkou no Sensei Hajimemashita!"], "top_ids": [27899, 34943, 57533]} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Code Geass: Lelouch of the Rebellion R2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4899.8, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season", "Code Geass: Hangyaku no Lelouch R2 Picture Drama", "Code Geass: Hangyaku no Lelouch R2 Specials", "コードギアス 反逆のルルーシュ R2 ピクチャードラマ", "Code Geass: Hangyaku no Lelouch R2 Special Edition - Zero Requiem", "コードギアス 反逆のルルーシュ R2 Special Edition Zero Requiem"], "top_ids": [2904, 5163, 6768]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6678.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "一拳超人 第二季", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 4847.0, "error": null, "top_titles": ["One Punch Man 2", "One-Punch Man Season 2", "ワンパンマン 2"], "top_ids": [97668]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ワンパンマン 2期", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3691.8, "error": null, "top_titles": ["One Punch Man 2nd Season", "One Punch Man 3 Part 2", "One Punch Man 2nd Season Specials"], "top_ids": [34134, 63193, 39705]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "kaguya sama love is war", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2286.3, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2", "Kaguya-sama: Love is War Season 2", "Kaguya-sama wa Kokurasetai: Ultra Romantic", "Kaguya-sama: Love is War Season 3", "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3"], "top_ids": ["41373", "42632", "43691"]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "一拳超人 第二季", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2626.5, "error": null, "top_titles": ["Bing Ji Chaoren Kuaidi Xia 2nd Season", "Jiandao Di Yi Xian 2nd Season", "Nanocore 2nd Season"], "top_ids": [45337, 59087, 33271]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "원펀맨 2기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2784.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "デス・パレード", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2227.1, "error": null, "top_titles": ["Death Parade"], "top_ids": ["9969"]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "원펀맨 2기", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2902.8, "error": null, "top_titles": ["Dudadakung 2nd Season", "Biklonz 2nd Season", "Athlon Tobot 2"], "top_ids": [48170, 59948, 52737]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "です・ぱれーど", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3136.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 48, "mal_id": 2904, "popularity": 50, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "code geass lelouch of the rebellion r2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3843.8, "error": null, "top_titles": ["Code Geass: Hangyaku no Lelouch R2", "Code Geass: Hangyaku no Lelouch 2nd Season", "Code Geass: Hangyaku no Lelouch Second Season", "Code Geass: Hangyaku no Lelouch R2 Picture Drama", "Code Geass: Hangyaku no Lelouch R2 Specials", "コードギアス 反逆のルルーシュ R2 ピクチャードラマ", "Code Geass: Hangyaku no Lelouch R2 Special Edition - Zero Requiem", "コードギアス 反逆のルルーシュ R2 Special Edition Zero Requiem"], "top_ids": [2904, 5163, 6768]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "One-Punch Man Season 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2662.2, "error": null, "top_titles": ["One Punch Man 2nd Season", "One Punch Man 2nd Season: Ichigeki de Wakaru! Maji Furikaeri!", "One Punch Man 3 Part 2"], "top_ids": [34134, 62653, 63193]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "死亡游行", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2480.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3315.3, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen OVA", "かぐや様は告らせたい? ~天才たちの恋愛頭脳戦~ OVA"], "top_ids": [37999, 40591, 43609]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "one punch man season 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2830.8, "error": null, "top_titles": ["One Punch Man 2nd Season", "One Punch Man 2nd Season: Ichigeki de Wakaru! Maji Furikaeri!", "One Punch Man 3 Part 2"], "top_ids": [34134, 62653, 63193]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "死亡遊行", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2662.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "我的英雄学院 4", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 11687.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ジョジョの奇妙な冒険", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3079.6, "error": null, "top_titles": ["JoJo no Kimyou na Bouken (TV)", "JoJo no Kimyou na Bouken", "JoJo no Kimyou na Bouken Part 5: Ougon no Kaze"], "top_ids": [14719, 666, 37991]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "ja", "backend": "jikan", "variant": "enhance_jaconv_norm", "query": "かぐや様は告らせたいー天才たちの恋愛頭脳戦ー", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 5683.0, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai Movie", "Kaguya Wants to be Confessed To Movie", "劇場版 かぐや様は告らせたい", "Kaguya-sama wa Kokurasetai: Otona e no Kaidan", "かぐや様は告らせたい 大人への階段", "Kaguya-sama: Love Is War - Stairway to Adulthood", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains"], "top_ids": [63212, 61903, 37999]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "One-Punch Man Season 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13153.1, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "JOJO的奇妙冒险", "hit": true, "position": 5, "kind": "title_exact", "n_returned": 10, "duration_ms": 2791.8, "error": null, "top_titles": ["Nai Long: Qimiao Maoxian", "Xiao Meirenyu de Qihuan Maoxian", "Baobao Bashi: Qimiao Shuxue Da Maoxian"], "top_ids": [60827, 45112, 45496]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "데스 퍼레이드", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6594.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "one punch man season 2", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 1941.0, "error": null, "top_titles": ["One Punch Man 2", "One-Punch Man Season 2", "ワンパンマン 2", "One Punch Man 2 OVA", "One-Punch Man Season 2 OVA", "ワンパンマン 2 OVA", "One Punch Man 3 Part 2", "One Punch Man Season 3 Part 2"], "top_ids": [97668, 108945, 204747]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Death Parade", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3036.0, "error": null, "top_titles": ["Death Parade"], "top_ids": ["9969"]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ジョジョの奇妙な冒険", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 4962.0, "error": null, "top_titles": ["JoJo no Kimyou na Bouken", "JoJo's Bizarre Adventure", "ジョジョの奇妙な冒険", "JoJo no Kimyou na Bouken (TV)", "JoJo's Bizarre Adventure (TV)", "ジョジョの奇妙な冒険 (TV)", "JoJo no Kimyou na Bouken (2000)", "JoJo's Bizarre Adventure (2000)"], "top_ids": [666, 14719, 665]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "辉告", "hit": true, "position": 3, "kind": "id", "n_returned": 10, "duration_ms": 7152.1, "error": null, "top_titles": ["He Wei Dao x Hui Yeda Xiaojie Xiangyao Wo Gaobai", "Nissin x Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "He Wei Dao x Kaguya-sama: Love Is War?", "Kaguya-sama wa Kokurasetai Movie", "Kaguya Wants to be Confessed To Movie", "劇場版 かぐや様は告らせたい", "Kaguya-sama wa Kokurasetai: Otona e no Kaidan", "かぐや様は告らせたい 大人への階段"], "top_ids": [44270, 63212, 61903]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "death parade", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2452.2, "error": null, "top_titles": ["Death Parade"], "top_ids": ["9969"]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "나의 히어로 아카데미아 4기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13655.5, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "JOJO的奇妙冒險", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 8696.4, "error": null, "top_titles": ["JoJo no Kimyou na Bouken (TV)", "JoJo no Kimyou na Bouken", "Batu de Qimiao Lucheng"], "top_ids": [14719, 666, 47029]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "輝告", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 2853.0, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai Movie", "Kaguya Wants to be Confessed To Movie", "劇場版 かぐや様は告らせたい", "Kaguya-sama wa Kokurasetai: Otona e no Kaidan", "かぐや様は告らせたい 大人への階段", "Kaguya-sama: Love Is War - Stairway to Adulthood", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains"], "top_ids": [63212, 61903, 37999]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 2196.6, "error": null, "top_titles": ["Boku no Hero Academia", "Boku no Hero Academia the Movie: Futari no Hero", "Boku no Hero Academia: All Might - Rising The Animation"], "top_ids": ["11469", "14084", "42046"]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "My Hero Academia Season 4", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2842.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "죠죠의 기묘한 모험", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3016.8, "error": null, "top_titles": ["Allegseuui Moheom", "Nabiui Moheom", "Kkaemo-ui Moheom"], "top_ids": [48287, 56475, 38094]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "JOJO的奇妙冒险", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7647.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "카구야 님은 고백받고 싶어 ~천재들의 연애 두뇌전~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5396.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "JoJo's Bizarre Adventure (2012)", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2788.1, "error": null, "top_titles": ["JoJo no Kimyou na Bouken (TV)", "JoJo no Kimyou na Bouken", "JoJo no Kimyou na Bouken: Adventure"], "top_ids": [14719, 666, 665]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "JOJO的奇妙冒險", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2138.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Kaguya-sama: Love is War", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2791.4, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", "Kaguya-sama wa Kokurasetai: Ultra Romantic", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season"], "top_ids": [37999, 40591, 43608]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "죠죠의 기묘한 모험", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2174.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "jojo s bizarre adventure 2012", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 3399.7, "error": null, "top_titles": ["JoJo no Kimyou na Bouken Part 6: Stone Ocean Part 2", "JoJo no Kimyou na Bouken Part 6: Stone Ocean Part 3", "JoJo no Kimyou na Bouken Part 6: Stone Ocean"], "top_ids": [51367, 53273, 48661]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "JoJo's Bizarre Adventure (2012)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3175.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "我的英雄学院 4", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12908.1, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "キルラキル", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2792.0, "error": null, "top_titles": ["Kill la Kill", "Kill la Kill Specials"], "top_ids": [18679, 21659]} +{"sample_index": 49, "mal_id": 37999, "popularity": 51, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "kaguya sama love is war", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4228.9, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", "Kaguya-sama wa Kokurasetai: Ultra Romantic", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season"], "top_ids": [37999, 40591, 43608]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "きるらきる", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4273.9, "error": null, "top_titles": ["Magical★Taruruuto-kun: Sukisuki Takoyaki!", "Shikoyaka Naru Toki mo Hameru Toki mo"], "top_ids": [22979, 63431, 42848]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia season 4", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3569.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "デス・パレード", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2364.9, "error": null, "top_titles": ["Death Parade", "デス・パレード", "VAP", "Death Billiards", "Wakate Animator Ikusei Project", "2012 Young Animator Training Project", "Bishoujo Senshi Sailor Moon Crystal Season III", "Bishoujo Senshi Sailor Moon Crystal: Death Busters-hen"], "top_ids": [28223, 14353, 31733]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "斩服少女", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2135.8, "error": null, "top_titles": ["Shoujo x Shoujo x Shoujo The Animation", "Natsufuku no Shoujo-tachi", "Mahou Shoujo Lyrical Nanoha Picture Drama"], "top_ids": [14379, 8896, 35501]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "jojo s bizarre adventure 2012", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6901.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ブラッククローバー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4104.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "ぶらっくくろーばー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2640.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "斬服少女", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5110.2, "error": null, "top_titles": ["Shoujo x Shoujo x Shoujo The Animation", "Onikiri Shoujo", "Natsufuku no Shoujo-tachi"], "top_ids": [14379, 37547, 8896]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "我的英雄學院 4", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12399.0, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "キルラキル", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 5585.8, "error": null, "top_titles": ["Kill la Kill", "キルラキル", "Kill la Kill Tokubetsu-hen", "Kill la Kill: GOODBYE AGAIN", "キルラキル 特別編"], "top_ids": [18679, 20572]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "です・ぱれーど", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 8888.4, "error": null, "top_titles": ["Heartcatch Precure! Movie: Hana no Miyako de Fashion Show... desu ka!?", "Heartcatch Precure! Hana no To de Fashion Show... desuka!?", "Heart Catch Pretty Cure! The Movie: Fashion Show in Paris!", "Saikyou no Shokugyou wa Yuusha demo Kenja demo Naku Kanteishi (Kari) Rashii desu yo?", "最強の職業は勇者でも賢者でもなく鑑定士(仮)らしいですよ?", "The Strongest Job Is Apparently Not a Hero or a Sage, but an Appraiser (Provisional)!", "Hito tte Tada no Tsutsu Janai desu ka", "人ってただの筒じゃないですか"], "top_ids": [9288, 62825, 61550]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "킬라킬", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3486.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "나의 히어로 아카데미아 4기", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 3672.4, "error": null, "top_titles": ["Zombie-ttal", "좀비가 되어버린 나의 딸", "Zombie-ga Doeeobeorin Nauittal"], "top_ids": ["47248"]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "きるらきる", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4025.0, "error": null, "top_titles": ["Ikiteirutte Subarashii!", "生きているってすばらしい!", "Mamoru: Hikitsugu - Watashitachi no Kurashi", "守る 引き継ぐ 私たちの暮らし", "Senbon Matsubara: Kawa to Ikiru Shounen-tachi", "せんぼんまつばら 川と生きる少年たち"], "top_ids": [109345, 119086, 19167]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "黑色五叶草", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6000.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "My Hero Academia Season 4", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2860.9, "error": null, "top_titles": ["Boku no Hero Academia 4"], "top_ids": ["41971"]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "斩服少女", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2317.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Kill la Kill", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5379.3, "error": null, "top_titles": ["Kill la Kill", "Kill la Kill Specials", "Killing Me/Killing You PVs"], "top_ids": [18679, 21659, 52824]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "斬服少女", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2634.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "黑色五葉草", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6830.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "킬라킬", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3363.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "kill la kill", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4826.2, "error": null, "top_titles": ["Kill la Kill", "Kill la Kill Specials", "Killing Me/Killing You PVs"], "top_ids": [18679, 21659, 52824]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "블랙 클로버", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3520.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia season 4", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 5279.2, "error": null, "top_titles": ["Boku no Hero Academia 4"], "top_ids": ["41971"]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Kill la Kill", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3933.1, "error": null, "top_titles": ["Kill la Kill", "キルラキル", "Kill la Kill Tokubetsu-hen", "Kill la Kill: GOODBYE AGAIN", "キルラキル 特別編"], "top_ids": [18679, 20572]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "死亡游行", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 15347.6, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ブラッククローバー", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 4686.7, "error": null, "top_titles": ["Black Clover", "Black Clover: Jump Festa 2016 Special", "Black Clover (2016)", "Black Clover: Mahou Tei no Ken"], "top_ids": ["13209", "12625", "44242"]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "死亡遊行", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 7111.8, "error": null, "top_titles": ["Shibou Yuugi de Meshi wo Kuu.", "死亡遊戯で飯を食う。", "Shiboyugi: Playing Death Games to Put Food on the Table", "Shibou Yuugi de Meshi wo Kuu. 44: Cloudy Beach", "死亡遊戯で飯を食う。44:CLOUDY BEACH", "Shiboyugi: Playing Death Games to Put Food on the Table: 44 - Cloudy Beach"], "top_ids": [59711, 63819, 63819]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "FAIRY TAIL(フェアリーテイル)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12341.5, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "데스 퍼레이드", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2550.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "ぶらっくくろーばー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7553.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "kill la kill", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2801.2, "error": null, "top_titles": ["Kill la Kill", "キルラキル", "Kill la Kill Tokubetsu-hen", "Kill la Kill: GOODBYE AGAIN", "キルラキル 特別編"], "top_ids": [18679, 20572]} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Death Parade", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3171.0, "error": null, "top_titles": ["Death Parade", "デス・パレード", "VAP", "Death Stranding: Isolation", "DEATH STRANDING ISOLATIONS (Working Title)", "E&H Production", "Death Stranding: Mosquito", "DEATH STRANDING MOSQUITO"], "top_ids": [28223, 62931, 62549]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "黑色五叶草", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2203.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "FAIRY TAIL(ふぇありーている)", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4089.1, "error": null, "top_titles": ["Iii Icecrin Double", "Itsuka Tenma no Kuro Usagi: Kokoro Utsuri no Toukoubi - School Attendance Day", "Fairy Ngoo"], "top_ids": [51839, 10934, 39708]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Black Clover", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 17776.3, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "黑色五葉草", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2397.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "妖精的尾巴", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2982.8, "error": null, "top_titles": ["Zhangda Weiba De Tuzi", "Yousei Dick", "Yousei Ou"], "top_ids": [49139, 7625, 7818]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "FAIRY TAIL(フェアリーテイル)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5737.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 50, "mal_id": 28223, "popularity": 52, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "death parade", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3216.4, "error": null, "top_titles": ["Death Parade", "デス・パレード", "VAP", "Death Stranding: Isolation", "DEATH STRANDING ISOLATIONS (Working Title)", "E&H Production", "Death Stranding: Mosquito", "DEATH STRANDING MOSQUITO"], "top_ids": [28223, 62931, 62549]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "黑色五葉草", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3547.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "페어리 테일", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3357.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "僕のヒーローアカデミア", "hit": true, "position": 3, "kind": "id", "n_returned": 10, "duration_ms": 3516.6, "error": null, "top_titles": ["Boku no Hero Academia", "僕のヒーローアカデミア", "My Hero Academia", "Boku no Hero Academia 2nd Season", "My Hero Academia Season 2", "Boku no Hero Academia 3rd Season", "My Hero Academia Season 3"], "top_ids": [31964, 33486, 36456]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "黑色五叶草", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3535.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Fairy Tail", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3360.4, "error": null, "top_titles": ["Fairy Tail", "Fairy Tail Movie 1: Houou no Miko", "Fairy Tail Movie 1: Houou no Miko - Hajimari no Asa"], "top_ids": [6702, 12049, 17535]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "블랙 클로버", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 3271.3, "error": null, "top_titles": ["Clover 4/3", "Clover 4.3"], "top_ids": ["9237"]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "我的英雄学院 4", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4692.7, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Black Clover", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 2641.0, "error": null, "top_titles": ["Black Clover", "Black Clover: Mahou Tei no Ken", "Black Clover: Jump Festa 2016 Special", "Black Clover (2016)"], "top_ids": ["13209", "44242", "12625"]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "FAIRY TAIL(ふぇありーている)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12251.9, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "我的英雄學院 4", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3084.2, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "fairy tail", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4086.8, "error": null, "top_titles": ["Fairy Tail", "Fairy Tail Movie 1: Houou no Miko", "Fairy Tail Movie 1: Houou no Miko - Hajimari no Asa"], "top_ids": [6702, 12049, 17535]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "妖精的尾巴", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3077.9, "error": null, "top_titles": ["FAIRY TAIL", "Fairy Tail"], "top_ids": [6702]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "black clover", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 8104.2, "error": null, "top_titles": ["Black Clover", "Yūki Tabata", "Hiro Shimono", "Black Clover: Sword of the Wizard King", "Ayataka Tanemura", "Johnny Onda", "Tatsuya Yoshihara"], "top_ids": ["36880", "25071", "19743"]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "나의 히어로 아카데미아 4기", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3309.8, "error": null, "top_titles": ["Geomjeong Gomusin 4th Season", "Geomjeong-gomusin 4th Season", "검정 고무신 4기", "Biklonz 4th Season", "바이클론즈 4기", "Action", "Byeonsinjadongcha Tobot 4th Season", "변신자동차 또봇 4기"], "top_ids": [57116, 59964, 62759]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "black clover", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 2340.0, "error": null, "top_titles": ["Black Clover", "Black Clover: Mahou Tei no Ken", "Black Clover: Jump Festa 2016 Special", "Black Clover (2016)"], "top_ids": ["13209", "44242", "12625"]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "페어리 테일", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2530.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "東京喰種√A", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1746.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "東京喰種√A", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2448.2, "error": null, "top_titles": ["Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season"], "top_ids": ["9135"]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ヴィンランド・サガ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 9, "duration_ms": 6903.0, "error": null, "top_titles": ["Vinland Saga", "Vinland Saga Season 2: Drowning in the Shadow", "Vinland Saga Season 2: Same Old Story"], "top_ids": [37521, 54463, 55272]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Fairy Tail", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3459.9, "error": null, "top_titles": ["FAIRY TAIL", "Fairy Tail", "FAIRY TAIL (2018)", "Fairy Tail Final Season", "FAIRY TAIL OVA"], "top_ids": [6702, 99749, 9982]} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "东京喰种√A", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4034.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "My Hero Academia Season 4", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6321.6, "error": null, "top_titles": ["Boku no Hero Academia 4th Season", "僕のヒーローアカデミア", "My Hero Academia Season 4", "Boku no Hero Academia 2nd Season", "My Hero Academia Season 2", "Boku no Hero Academia 3rd Season", "My Hero Academia Season 3"], "top_ids": [38408, 33486, 36456]} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "东京喰种√A", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5688.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "도쿄 구울 √A", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4805.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "ゔぃんらんど・さが", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6916.4, "error": null, "top_titles": ["Sasami-san@Ganbaranai", "Tsukuyomi: Moon Phase Special", "Dondonshi Television Vol. 0: Saito-san wo Shinryaku shita yo."], "top_ids": [14515, 2580, 63068]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "fairy tail", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3883.2, "error": null, "top_titles": ["FAIRY TAIL", "Fairy Tail", "FAIRY TAIL (2018)", "Fairy Tail Final Season", "FAIRY TAIL OVA"], "top_ids": [6702, 99749, 9982]} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "东京喰种√A", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4348.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Tokyo Ghoul √A", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3051.7, "error": null, "top_titles": ["Tokyo Ghoul √A", "Shuhei Morita", "Chūji Mikasano"], "top_ids": ["16318"]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ヴィンランド・サガ", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 2566.0, "error": null, "top_titles": ["VINLAND SAGA", "Vinland Saga", "ヴィンランド・サガ", "Ponkotsuland Saga", "ポンコツランド・サガ", "VINLAND SAGA SEASON 2", "Vinland Saga Season 2", "ヴィンランド・サガ SEASON2"], "top_ids": [101348, 145902, 136430]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "冰海战记", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3336.3, "error": null, "top_titles": ["Tian Lang Zhan Ji", "Kuang Wan Zhan Ji", "Luo Xiaohei Zhanji"], "top_ids": [45686, 47347, 33443]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "冰海戰記", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2621.4, "error": null, "top_titles": ["Qise Zhanji", "Slime Boukenki: Umi da, Yeah!", "Lao Fu Zi: Mojie Meng Zhanji"], "top_ids": [45078, 8664, 52369]} +{"sample_index": 51, "mal_id": 38408, "popularity": 53, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "my hero academia season 4", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3950.0, "error": null, "top_titles": ["Boku no Hero Academia 4th Season", "僕のヒーローアカデミア", "My Hero Academia Season 4", "Boku no Hero Academia 2nd Season", "My Hero Academia Season 2", "Boku no Hero Academia 3rd Season", "My Hero Academia Season 3"], "top_ids": [38408, 33486, 36456]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "빈란드 사가", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 4374.9, "error": null, "top_titles": ["Pororo Mabeobsa 2: Dragon Gisaga Doeeola"], "top_ids": [59007]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ブラッククローバー", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3301.6, "error": null, "top_titles": ["Black Clover", "ブラッククローバー", "TV Tokyo", "Black Clover: Jump Festa 2016 Special", "Xebec", "Black Clover 2nd Season", "ブラッククローバー 2nd season", "Black Clover Season 2"], "top_ids": [34572, 33950, 61967]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "ゔぃんらんど・さが", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8722.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "tokyo ghoul a", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4799.3, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Vinland Saga", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2609.4, "error": null, "top_titles": ["Vinland Saga", "Vinland Saga Season 2: Drowning in the Shadow", "Vinland Saga Season 2"], "top_ids": [37521, 54463, 49387]} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "東京喰種√A", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 11837.2, "error": null, "top_titles": ["Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season"], "top_ids": ["9135"]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "冰海战记", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2559.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "ぶらっくくろーばー", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5607.6, "error": null, "top_titles": ["Ai Ai Ai Ai♡Ai Love You", "あいあいあいあい♡あいらぶゆー", "Ijigen Tokyo", "Maburaho", "まぶらほ", "Kadokawa Shoten", "Chuu Bra!!", "Chubra!!"], "top_ids": [63300, 193, 6645]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ワンパンマン 2期", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3610.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "冰海戰記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2529.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "도쿄 구울 √A", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3285.5, "error": null, "top_titles": ["Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season"], "top_ids": ["9135"]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "빈란드 사가", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2143.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "vinland saga", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3023.9, "error": null, "top_titles": ["Vinland Saga", "Vinland Saga Season 2: Drowning in the Shadow", "Vinland Saga Season 2: Same Old Story"], "top_ids": [37521, 54463, 55272]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "一拳超人 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4192.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Tokyo Ghoul √A", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3175.1, "error": null, "top_titles": ["Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season"], "top_ids": ["9135"]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ダーリン・イン・ザ・フランキス", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4190.7, "error": null, "top_titles": ["Darling in the FranXX", "In the Film", "Vampire in the Garden"], "top_ids": [35849, 52022, 39518]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Vinland Saga", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 5426.9, "error": null, "top_titles": ["VINLAND SAGA", "Vinland Saga", "ヴィンランド・サガ", "VINLAND SAGA SEASON 2", "Vinland Saga Season 2", "ヴィンランド・サガ SEASON2", "Ponkotsuland Saga", "ポンコツランド・サガ"], "top_ids": [101348, 136430, 145902]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "だーりん・いん・ざ・ふらんきす", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 1819.5, "error": null, "top_titles": ["[Watashi no Ofuru de Waruin dakedo] to Okaasama (Heroine) ni Torimaki wo Oshitsukerare, Totsuida Henkyou demo Yome Atsukai Saremasen ga, Okage de Jiyuu ni Ikiraremasu!", "Oniichan no Koto nanka Zenzen Suki ja Nai n da kara ne!! Special", "Tsukuyomi: Moon Phase Special"], "top_ids": [62520, 10219, 2580]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "情迷弗兰克斯", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 1962.9, "error": null, "top_titles": ["Meijyou", "Shen Yin Wangzuo Movie: Yi Lai Ke Si Chuanqi", "Fen Qing"], "top_ids": [48392, 61508, 30534]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "黑色五叶草", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12336.5, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "tokyo ghoul a", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 4026.1, "error": null, "top_titles": ["Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season", "Tokyo Ghoul: \"Jack\"", "Force of Will"], "top_ids": ["9135", "10789", "12550"]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "vinland saga", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 2014.4, "error": null, "top_titles": ["VINLAND SAGA", "Vinland Saga", "ヴィンランド・サガ", "VINLAND SAGA SEASON 2", "Vinland Saga Season 2", "ヴィンランド・サガ SEASON2", "Ponkotsuland Saga", "ポンコツランド・サガ"], "top_ids": [101348, 136430, 145902]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "黑色五葉草", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2821.4, "error": null, "top_titles": ["Nekojiru-sou", "ねこぢる草", "Cat Soup", "Shi Cao Lao Long Bei Guan Yi E Long Zhi Ming", "Yowai 5000-nen no Soushoku Dragon", "Iwarenaki Jaryuu Nintei", "Shi Cao Lao Long Bei Guan Yi E Long Zhi Ming 2nd Season", "A Gentle Dragon of 5000 Years Old"], "top_ids": [601, 50421, 58779]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ワンパンマン 2期", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 8, "duration_ms": 2673.8, "error": null, "top_titles": ["One Punch Man", "One Punch-Man", "OPM", "One Punch Man Specials", "One Punch Man 2nd Season Specials"], "top_ids": ["10740", "11430", "42703"]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ダーリン・イン・ザ・フランキス", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2758.0, "error": null, "top_titles": ["Darling in the Franxx", "DARLING in the FRANXX", "ダーリン・イン・ザ・フランキス"], "top_ids": [99423]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "원펀맨 2기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12277.2, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "だーりん・いん・ざ・ふらんきす", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2108.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "黑色五葉草", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2546.2, "error": null, "top_titles": ["Nekojiru-sou", "ねこぢる草", "Cat Soup", "Shi Cao Lao Long Bei Guan Yi E Long Zhi Ming", "Yowai 5000-nen no Soushoku Dragon", "Iwarenaki Jaryuu Nintei", "Shi Cao Lao Long Bei Guan Yi E Long Zhi Ming 2nd Season", "A Gentle Dragon of 5000 Years Old"], "top_ids": [601, 50421, 58779]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "情迷弗蘭克斯", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5878.4, "error": null, "top_titles": ["Meijyou", "Shen Yin Wangzuo Movie: Yi Lai Ke Si Chuanqi", "Fen Qing"], "top_ids": [48392, 61508, 30534]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "情迷弗兰克斯", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2532.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "一拳超人 第二季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4957.2, "error": null, "top_titles": ["Quanzhi Gaoshou 2nd Season", "Quan Zhi Gao Shou Season 2", "Full-Time Expert Season 2", "Xian Wang de Richang Shenghuo 2nd Season", "Shiguang Dailiren 2", "Link Click 2nd Season", "LINK CLICK II"], "top_ids": ["41358", "43795", "45504"]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "One-Punch Man Season 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3753.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "달링 인 더 프랑키스", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2966.9, "error": null, "top_titles": ["In:App", "Meogneun Insaeng PV", "The Angler"], "top_ids": [56902, 52911, 51750]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "情迷弗蘭克斯", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2444.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "원펀맨 2기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2596.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "one punch man season 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2680.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "DARLING in the FRANXX", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3163.1, "error": null, "top_titles": ["Darling in the FranXX", "Eiyuuou, Bu wo Kiwameru Tame Tenseisu: Soshite, Sekai Saikyou no Minarai Kishi♀ Mini Anime", "Eiyuuou, Bu wo Kiwameru Tame Tenseisu: Soshite, Sekai Saikyou no Minarai Kishi♀"], "top_ids": [35849, 43727, 50481]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "One-Punch Man Season 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 3285.4, "error": null, "top_titles": ["One Punch Man 2nd Season: Ichigeki de Wakaru! Maji Furikaeri!", "One-Punch Man Season 3 Episode 0", "One Punch-Man 2 Recap", "One Punch Man 2nd Season Specials", "One Punch Man 2", "One Punch-Man 2", "OPM 2"], "top_ids": ["50239", "42703", "12566"]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "달링 인 더 프랑키스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3796.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ジョジョの奇妙な冒険", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5289.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "one punch man season 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2962.6, "error": null, "top_titles": ["One Punch Man 2nd Season: Ichigeki de Wakaru! Maji Furikaeri!", "One-Punch Man Season 3 Episode 0", "One Punch-Man 2 Recap", "One Punch Man 2nd Season Specials", "One Punch Man 2", "One Punch-Man 2", "OPM 2"], "top_ids": ["50239", "42703", "12566"]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "DARLING in the FRANXX", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3868.7, "error": null, "top_titles": ["Darling in the Franxx", "DARLING in the FRANXX", "ダーリン・イン・ザ・フランキス"], "top_ids": [99423]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "黑色五叶草", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14234.3, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "darling in the franxx", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4002.3, "error": null, "top_titles": ["Darling in the FranXX", "Eiyuuou, Bu wo Kiwameru Tame Tenseisu: Soshite, Sekai Saikyou no Minarai Kishi♀ Mini Anime", "Eiyuuou, Bu wo Kiwameru Tame Tenseisu: Soshite, Sekai Saikyou no Minarai Kishi♀"], "top_ids": [35849, 43727, 50481]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ジョジョの奇妙な冒険", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3429.8, "error": null, "top_titles": ["JoJo no Kimyou na Bouken (TV)", "JoJo no Kimyou na Bouken (2012)", "JoJo no Kimyou na Bouken", "JoJo's Bizarre Adventure OVA 1", "JoJo no Kimyou na Bouken: Stardust Crusaders 2nd Season", "JoJo's Bizarre Adventure Part 3", "JoJo's Bizarre Adventure: Stardust Crusaders - Egypt Arc"], "top_ids": ["7158", "610", "8739"]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "JOJO的奇妙冒险", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5720.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "블랙 클로버", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 2647.1, "error": null, "top_titles": ["Clover 4/3", "Clover 4.3", "클로버 4/3"], "top_ids": [19695]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "アナザー", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 2600.1, "error": null, "top_titles": ["Another", "Another: The Other - Inga", "Another World"], "top_ids": [11111, 11701, 40295]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "JOJO的奇妙冒险", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5435.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "あなざー", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 3304.6, "error": null, "top_titles": ["Geats Extra: Geats Anime - Another Grand Prix", "Isekai Quartet Movie: Another World", "Bananya: Around the World"], "top_ids": [56206, 41567, 59666]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "죠죠의 기묘한 모험", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4845.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Black Clover", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5853.5, "error": null, "top_titles": ["Black Clover", "ブラッククローバー", "TV Tokyo", "Black Clover: Mahou Tei no Ken", "Black Clover: Mahoutei no Ken", "ブラッククローバー 魔法帝の剣", "Black Clover: Jump Festa 2018 Special", "Black Clover: JSAF2018 Special Anime - All Mahou Kishi Kanshasai"], "top_ids": [34572, 48585, 38768]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "JOJO的奇妙冒險", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3672.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "darling in the franxx", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 9716.1, "error": null, "top_titles": ["Darling in the Franxx", "DARLING in the FRANXX", "ダーリン・イン・ザ・フランキス"], "top_ids": [99423]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "替身", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4049.5, "error": null, "top_titles": ["Keshin", "Henshin", "Yinshen Tan Zhang"], "top_ids": [51377, 55831, 43674]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "アナザー", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2195.0, "error": null, "top_titles": ["Another", "アナザー", "Another World", "アナザー・ワールド", "Another: The Other - Inga", "Another: The Other", "アナザー The Other -因果-"], "top_ids": [11111, 111733, 11701]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "JoJo's Bizarre Adventure (2012)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5932.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "죠죠의 기묘한 모험", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 3691.9, "error": null, "top_titles": ["Kkaemo-ui Moheom", "Mamonogurai no Boukensha: Ore Dake Mamono wo Kuratte Tsuyoku Naru", "吞噬魔物的冒險者", "마물을 먹는 모험가"], "top_ids": ["41921", "50570"]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "어나더", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3384.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "あなざー", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 3, "duration_ms": 3195.1, "error": null, "top_titles": ["Geats Extra: Geats Anime - Another Grand Prix", "ギーツエクストラ ギーツあにめ あなざーぐらんぷり", "Isekai Quartet: Another World", "Isekai Quartet The Movie: Another World", "異世界かるてっと ~あなざーわーるど~", "Bananya: Around the World", "Bananya Around the World", "ばなにゃ あらうんど ざ わーるど"], "top_ids": [169771, 117074, 180599]} +{"sample_index": 52, "mal_id": 34572, "popularity": 54, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "black clover", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4063.6, "error": null, "top_titles": ["Black Clover", "ブラッククローバー", "TV Tokyo", "Black Clover: Mahou Tei no Ken", "Black Clover: Mahoutei no Ken", "ブラッククローバー 魔法帝の剣", "Black Clover: Jump Festa 2018 Special", "Black Clover: JSAF2018 Special Anime - All Mahou Kishi Kanshasai"], "top_ids": [34572, 48585, 38768]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Another", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3291.7, "error": null, "top_titles": ["Another", "Another: The Other - Inga", "Front Innocent: Mou Hitotsu no Lady Innocent"], "top_ids": [11111, 11701, 2136]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "替身", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2080.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "JoJo's Bizarre Adventure (2012)", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 5075.9, "error": null, "top_titles": ["JoJo no Kimyou na Bouken (TV)", "JoJo no Kimyou na Bouken (2012)"], "top_ids": ["7158"]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "어나더", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3004.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "another", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6493.3, "error": null, "top_titles": ["Another", "Another: The Other - Inga", "Front Innocent: Mou Hitotsu no Lady Innocent"], "top_ids": [11111, 11701, 2136]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "劇場版 鬼滅の刃 無限列車編", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 1416.2, "error": null, "top_titles": ["Kimetsu no Yaiba Movie: Mugen Ressha-hen", "Kimetsu no Yaiba Movie 2: Mugenjou-hen", "Kimetsu no Yaiba Movie 3: Mugenjou-hen"], "top_ids": [40456, 62546, 62547]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "jojo s bizarre adventure 2012", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2650.3, "error": null, "top_titles": ["JoJo no Kimyou na Bouken (TV)", "JoJo no Kimyou na Bouken (2012)"], "top_ids": ["7158"]} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "東京喰種√A", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 10899.4, "error": null, "top_titles": ["Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season", "Tokyo Ghoul", "Tokyo Kushu", "Toukyou Kushu", "Tokyo Ghoul:re", "Tokyo Kushu:re"], "top_ids": [27899, 22319, 36511]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "jojo s bizarre adventure 2012", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4201.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "鬼灭之刃:无限列车篇", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3652.6, "error": null, "top_titles": ["Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba Movie: Mugen Ressha-hen", "Pipi Zhu: Chengyu Lieche"], "top_ids": [49926, 40456, 47894]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "キルラキル", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2341.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "ja", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "东京喰种√A", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3776.8, "error": null, "top_titles": ["Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season", "ef: A Tale of Memories.", "ef - a tale of memories.", "ef - A Tale of Memories", "ef: A Tale of Melodies.", "ef: A Tale of Memories Second Season"], "top_ids": [27899, 2924, 4789]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Another", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12165.6, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "东京喰种√A", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2802.7, "error": null, "top_titles": ["Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season", "ef: A Tale of Memories.", "ef - a tale of memories.", "ef - A Tale of Memories", "ef: A Tale of Melodies.", "ef: A Tale of Memories Second Season"], "top_ids": [27899, 2924, 4789]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "鬼滅之刃:無限列車篇", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 6374.5, "error": null, "top_titles": ["Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba Movie: Mugen Ressha-hen", "Kimetsu no Yaiba Movie 2: Mugenjou-hen"], "top_ids": [49926, 40456, 62546]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "another", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4371.3, "error": null, "top_titles": ["Another", "アナザー", "Another: The Other - Inga", "Another: The Other", "アナザー The Other -因果-", "Jiji to Baba", "Another Time", "ジージとバーバ"], "top_ids": [11111, 11701, 114615]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "キルラキル", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12235.6, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "鬼滅之刃劇場版 無限列車篇", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4987.1, "error": null, "top_titles": ["Kimetsu no Yaiba Movie: Mugen Ressha-hen", "Kimetsu no Yaiba Movie 2: Mugenjou-hen", "Kimetsu no Yaiba Movie 3: Mugenjou-hen"], "top_ids": [40456, 62546, 62547]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "きるらきる", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2706.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "きるらきる", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12189.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "鬼灭之刃剧场版 无限列车篇", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2696.8, "error": null, "top_titles": ["Kimetsu no Yaiba Movie: Mugen Ressha-hen", "Kimetsu no Yaiba: Mugen Ressha-hen", "Zhan Shen Movie: Cang Nan Zhi Shang"], "top_ids": [40456, 49926, 62727]} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "東京喰種√A", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12250.3, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "斩服少女", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5684.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "斩服少女", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5010.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "鬼滅之刃劇場版 無限列車篇", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5201.0, "error": null, "top_titles": ["Kimetsu no Yaiba Movie: Mugen Ressha-hen", "Kimetsu no Yaiba Movie 2: Mugenjou-hen", "Kimetsu no Yaiba Movie 3: Mugenjou-hen"], "top_ids": [40456, 62546, 62547]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "劇場版 鬼滅の刃 無限列車編", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12274.4, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "도쿄 구울 √A", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5062.4, "error": null, "top_titles": ["Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season", "ef: A Tale of Memories.", "ef - a tale of memories.", "ef - A Tale of Memories", "ef: A Tale of Melodies.", "ef: A Tale of Memories Second Season"], "top_ids": [27899, 2924, 4789]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "킬라킬", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4198.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "鬼灭之刃剧场版 无限列车篇", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3656.2, "error": null, "top_titles": ["Kimetsu no Yaiba Movie: Mugen Ressha-hen", "Kimetsu no Yaiba: Mugen Ressha-hen", "Zhan Shen Movie: Cang Nan Zhi Shang"], "top_ids": [40456, 49926, 62727]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "鬼灭之刃:无限列车篇", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3213.6, "error": null, "top_titles": ["Kimetsu no Yaiba: Mugen Ressha-hen", "Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train", "鬼滅の刃 無限列車編", "Kimetsu no Yaiba: Mugen Ressha-hen (TV)", "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", "鬼滅の刃 無限列車編 (TV)"], "top_ids": [112151, 129874]} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Tokyo Ghoul √A", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2820.2, "error": null, "top_titles": ["Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season", "Tokyo Ghoul", "Tokyo Kushu", "Toukyou Kushu", "Tokyo Ghoul:re", "Tokyo Kushu:re"], "top_ids": [27899, 22319, 36511]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "鬼滅之刃:無限列車篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2576.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "극장판 귀멸의 칼날 무한열차 편", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4014.7, "error": null, "top_titles": ["Yeon-ui Pyeonji PV", "Yeon-ui Pyeonji", "Wiheomhan Pyeonuijeom"], "top_ids": [52877, 60020, 61764]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Kill la Kill", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 7384.5, "error": null, "top_titles": ["Kill la Kill", "Hiroyuki Imaishi", "Kazuki Nakashima"], "top_ids": ["23879", "15336"]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3408.9, "error": null, "top_titles": ["Kimetsu no Yaiba Movie: Mugen Ressha-hen", "Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba Movie 2: Mugenjou-hen"], "top_ids": [40456, 49926, 62546]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "斬服少女", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12277.8, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "鬼滅之刃劇場版 無限列車篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7136.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "鬼灭之刃剧场版 无限列车篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2320.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "킬라킬", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5437.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 53, "mal_id": 27899, "popularity": 55, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "tokyo ghoul a", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3483.1, "error": null, "top_titles": ["Tokyo Ghoul √A", "Tokyo Ghoul Root A", "Tokyo Ghoul 2nd Season", "Tokyo Ghoul", "Tokyo Kushu", "Toukyou Kushu", "Tokyo Ghoul:re", "Tokyo Kushu:re"], "top_ids": [27899, 22319, 36511]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "demon slayer kimetsu no yaiba the movie mugen train", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3839.9, "error": null, "top_titles": ["Kimetsu no Yaiba Movie: Mugen Ressha-hen", "Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba Movie 2: Mugenjou-hen"], "top_ids": [40456, 49926, 62546]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "鬼滅之刃劇場版 無限列車篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2499.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ワンパンマン 2期", "hit": true, "position": 3, "kind": "id", "n_returned": 10, "duration_ms": 2722.3, "error": null, "top_titles": ["One Punch Man 2nd Season: Ichigeki de Wakaru! Maji Furikaeri!", "One-Punch Man Season 3 Episode 0", "One Punch-Man 2 Recap", "One Punch Man 3 Part 2", "One Punch Man 3rd Season Part 2", "OPM 3", "One Punch Man 2nd Season Specials", "ワンパンマン SEASON 2 OVA 2"], "top_ids": [62653, 63193, 39705]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ソウルイーター", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2877.0, "error": null, "top_titles": ["Soul Eater", "Soul Eater NOT!", "Soul Eater: Late Night Show"], "top_ids": [3588, 21507, 21195]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "一拳超人 第二季", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 2139.5, "error": null, "top_titles": ["Bing Ji Chaoren Kuaidi Xia 2nd Season", "丙级超人快递侠 第二季", "Comedy", "Jian Lai 2nd Season", "The Swords 2nd Season", "Sword of Coming 2nd Season", "Zhege Nianji Huan Neng Dang Daxia Ma 2nd Season", "这个年纪还能当大侠吗 第二季"], "top_ids": [45337, 62728, 61948]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "鬼灭之刃剧场版 无限列车篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3989.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "kill la kill", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 4885.0, "error": null, "top_titles": ["Kill la Kill", "Hiroyuki Imaishi", "Kazuki Nakashima"], "top_ids": ["23879", "15336"]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "そうるいーたー", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3546.9, "error": null, "top_titles": ["Eiga de Toujou! Tamagotchi Dokidoki! Uchuu no Maigotchi!?", "Wooser no Sono Higurashi: Ken to Pants to Wooser to", "Mouse Cursor de Genjitsu wo Sousa Dekiru You ni Natta node, Onna no Ko wo Ippai Click Shima~su"], "top_ids": [6518, 16738, 63381]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "FAIRY TAIL(フェアリーテイル)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2042.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "극장판 귀멸의 칼날 무한열차 편", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2514.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "원펀맨 2기", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3360.2, "error": null, "top_titles": ["Athlon Tobot 2", "Athlon Tobot 2nd Season", "애슬론 또봇 2기", "Bubble Bubble Cook 2nd Season", "보글보글 쿡 2기", "Studio Vandal", "Dudadakung 2nd Season", "두다다쿵 2기"], "top_ids": [52737, 55078, 48170]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Kill la Kill", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12178.3, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "One-Punch Man Season 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2776.9, "error": null, "top_titles": ["One Punch Man 2nd Season", "One Punch-Man 2", "One-Punch Man 2", "One Punch Man 2nd Season Specials", "ワンパンマン SEASON 2 OVA 2", "One Punch Man Season 2 Specials", "One Punch Man 2nd Season Commemorative Special"], "top_ids": [34134, 39705, 39652]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 5133.0, "error": null, "top_titles": ["Kimetsu no Yaiba: Mugen Ressha-hen", "Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train", "鬼滅の刃 無限列車編"], "top_ids": [112151]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "소울 이터", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 6855.9, "error": null, "top_titles": ["G Fighters", "Shadow Fighter"], "top_ids": [48325, 48254]} +{"sample_index": 54, "mal_id": 34134, "popularity": 57, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "one punch man season 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4672.4, "error": null, "top_titles": ["One Punch Man 2nd Season", "One Punch-Man 2", "One-Punch Man 2", "One Punch Man 2nd Season Specials", "ワンパンマン SEASON 2 OVA 2", "One Punch Man Season 2 Specials", "One Punch Man 2nd Season Commemorative Special"], "top_ids": [34134, 39705, 39652]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "FAIRY TAIL(ふぇありーている)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8606.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Soul Eater", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2845.0, "error": null, "top_titles": ["Soul Eater", "Soul Eater NOT!", "Soul Eater: Late Night Show"], "top_ids": [3588, 21507, 21195]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ジョジョの奇妙な冒険", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 2674.6, "error": null, "top_titles": ["Steel Ball Run: JoJo no Kimyou na Bouken", "JoJo's Bizarre Adventure Part 7: Steel Ball Run", "JoJo no Kimyou na Bouken Part 7: Steel Ball Run", "JoJo no Kimyou na Bouken (TV)", "JoJo no Kimyou na Bouken (2012)", "Battle Tendency", "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders", "Dai San Bu Kuujou Joutarou: Mirai e no Isan"], "top_ids": [61469, 14719, 20899]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "JOJO的奇妙冒险", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 2492.8, "error": null, "top_titles": ["Nai Long: Qimiao Maoxian", "奶龙之奇妙冒险", "Adventure", "Baobao Bashi: Qimiao Shuxue Da Maoxian", "宝宝巴士之奇妙数学大冒险", "Fantasy", "JoJo no Kimyou na Bouken (TV)", "JoJo no Kimyou na Bouken (2012)"], "top_ids": [60827, 45496, 14719]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "demon slayer kimetsu no yaiba the movie mugen train", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2247.8, "error": null, "top_titles": ["Kimetsu no Yaiba: Mugen Ressha-hen", "Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train", "鬼滅の刃 無限列車編"], "top_ids": [112151]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "kill la kill", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 6517.4, "error": null, "top_titles": ["Kill la Kill", "KILL la KILL", "KLK", "Kill la Kill Specials", "Kill la Kill Tokubetsu-hen", "Sayonara wo Mou Ichido", "BATTLE SAURS Opening Animation"], "top_ids": ["7712", "8130", "11684"]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "FAIRY TAIL(フェアリーテイル)", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2289.1, "error": null, "top_titles": ["FAIRY TAIL (2018)", "Fairy Tail 3", "Fairy Tail Series 3", "Fairy Tail", "FAIRY TAIL", "FT", "Fairy Tail Series 2", "Fairy Tail Zero"], "top_ids": ["13658", "4676", "8203"]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ソウルイーター", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 3487.3, "error": null, "top_titles": ["Soul Eater", "ソウルイーター", "Shoujo Senki Soul Eater", "少女戦機 ソウルイーター", "Soul Eater Late Show", "ソウルイーターレイトショー"], "top_ids": [3588, 9328, 21687]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "妖精的尾巴", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9608.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "FAIRY TAIL(ふぇありーている)", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2311.9, "error": null, "top_titles": ["FAIRY TAIL (2018)", "Fairy Tail 3", "Fairy Tail Series 3", "Fairy Tail", "FAIRY TAIL", "FT", "Fairy Tail Series 2", "Fairy Tail Zero"], "top_ids": ["13658", "4676", "8203"]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "JOJO的奇妙冒險", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 5510.1, "error": null, "top_titles": ["Xi Yangyang Yu Hui Tailang: Yichu Da Maoxian", "喜羊羊與灰太狼之衣櫥大冒險", "Pleasant Goat and Big Big Wolf: The Tailor's Closet", "Da Maoxian Tielu", "大冒險鐵路", "Grand Adventure Railroad", "JoJo no Kimyou na Bouken (TV)", "JoJo no Kimyou na Bouken (2012)"], "top_ids": [43991, 52626, 14719]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "そうるいーたー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2891.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "妖精的尾巴", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2451.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "소울 이터", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1673.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "죠죠의 기묘한 모험", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 3114.5, "error": null, "top_titles": ["Allegseuui Moheom", "알렉스의 모험", "Fantasy", "Kkaemo-ui Moheom", "깨모의 모험", "Adventure of Kkaemo", "Nabiui Moheom", "나비의 모험"], "top_ids": [48287, 38094, 56475]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "soul eater", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2498.4, "error": null, "top_titles": ["Soul Eater", "Soul Eater NOT!", "Soul Eater: Late Night Show"], "top_ids": [3588, 21507, 21195]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Soul Eater", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 2752.9, "error": null, "top_titles": ["Soul Eater", "ソウルイーター", "Soul Eater Not!", "ソウルイータノット!", "Soul Eater Late Show", "ソウルイーターレイトショー"], "top_ids": [3588, 20547, 21687]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "페어리 테일", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 3751.2, "error": null, "top_titles": ["Eunhajeonseol Tera", "Tera", "Galaxy Legend Tera"], "top_ids": ["9741"]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "JoJo's Bizarre Adventure (2012)", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3515.2, "error": null, "top_titles": ["JoJo no Kimyou na Bouken (TV)", "JoJo no Kimyou na Bouken (2012)", "Battle Tendency", "JoJo no Kimyou na Bouken", "JoJo's Bizarre Adventure OVA 1", "ジョジョの奇妙な冒険", "JoJo no Kimyou na Bouken: Adventure", "JoJo's Bizarre Adventure (OVA)"], "top_ids": [14719, 666, 665]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Fairy Tail", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2374.3, "error": null, "top_titles": ["FAIRY TAIL (2018)", "Fairy Tail 3", "Fairy Tail Series 3", "Fairy Tail", "FAIRY TAIL", "FT", "Fairy Tail Series 2", "Fairy Tail Zero"], "top_ids": ["13658", "4676", "8203"]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "天元突破グレンラガン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4418.0, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann", "Tengen Toppa Gurren Lagann: Ore no Gurren wa Pikka-Pika!!", "Tengen Toppa Gurren Lagann Movie 1: Gurren-hen"], "top_ids": [2001, 10622, 4107]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "天元突破 紅蓮螺巖", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 2509.9, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann Movie 1: Gurren-hen", "Tengen Toppa Gurren Lagann Movie 2: Lagann-hen", "Cowboy Bebop: Tengoku no Tobira"], "top_ids": [4107, 4565, 5]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "페어리 테일", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13349.8, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "soul eater", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 2397.5, "error": null, "top_titles": ["Soul Eater", "ソウルイーター", "Soul Eater Not!", "ソウルイータノット!", "Soul Eater Late Show", "ソウルイーターレイトショー"], "top_ids": [3588, 20547, 21687]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "天元突破 红莲螺岩", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 5204.2, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann Movie 2: Lagann-hen", "Cowboy Bebop: Tengoku no Tobira", "Tengen Toppa Gurren Lagann"], "top_ids": [4565, 5, 2001]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "天元突破グレンラガン", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 2591.7, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann", "Gurren Lagann", "天元突破グレンラガン", "Tengen Toppa Gurren Lagann: Gurren-hen", "Gurren Lagann The Movie: Childhood's End", "天元突破グレンラガン 紅蓮篇", "Tengen Toppa Gurren Lagann: Lagann-hen", "Gurren Lagann The Movie: The Lights in the Sky are Stars"], "top_ids": [2001, 4107, 4565]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "天元突破 紅蓮螺巖", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2400.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "天元突破 紅蓮螺巖", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 3951.9, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann Movie 1: Gurren-hen", "Tengen Toppa Gurren Lagann Movie 2: Lagann-hen", "Cowboy Bebop: Tengoku no Tobira"], "top_ids": [4107, 4565, 5]} +{"sample_index": 55, "mal_id": 14719, "popularity": 58, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "jojo s bizarre adventure 2012", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12287.1, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "天元突破 红莲螺岩", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3007.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "天元突破 红莲螺岩", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 2956.5, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann Movie 2: Lagann-hen", "Cowboy Bebop: Tengoku no Tobira", "Tengen Toppa Gurren Lagann"], "top_ids": [4565, 5, 2001]} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "キルラキル", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2674.7, "error": null, "top_titles": ["Kill la Kill", "KLK", "Dressed to Kill", "Kill la Kill Specials", "Kill la Kill Tokubetsu-hen", "Sayonara wo Mou Ichido"], "top_ids": [18679, 21659]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "fairy tail", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12270.9, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "きるらきる", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 2565.8, "error": null, "top_titles": ["Harutsugeuo to Fuuraibou", "はるつげうおとふうらいぼう", "春告げ魚と風来坊"], "top_ids": [58229]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "天元突破 紅蓮螺巖", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3808.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Fairy Tail", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 11, "duration_ms": 15491.7, "error": null, "top_titles": ["Fairy Tail: 100 Years Quest", "Shinji Ishihira", "Toshinori Watanabe", "Fairy Tail", "Tetsuro Amino", "Jun'ichi Kitamura", "Masashi Sogo"], "top_ids": ["24716", "23400", "20846"]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ヴィンランド・サガ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 3546.5, "error": null, "top_titles": ["Vinland Saga", "Vinland Saga Season 2", "Vinland Saga Season 2: Drowning in the Shadow", "Vinland Saga Season 2 Episode 6.5"], "top_ids": ["41084", "44875", "47074"]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "그렌라간", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6645.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "斩服少女", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3633.6, "error": null, "top_titles": ["Isekai Maou to Shoukan Shoujo no Dorei Majutsu 3rd Season", "異世界魔王と召喚少女の奴隷魔術 第3期", "How Not to Summon a Demon Lord Season 3", "Huhuan Shaonu Special: Xiang Zuo de Shi Daodi Shi Shenme", "Huhuan Shaonu Tebie Pian: Xiang Zuo de Shi Daodi Shi Shenme", "呼唤少女特别篇 想做的事到底是什么"], "top_ids": [63912, 63912, 63533]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "ゔぃんらんど・さが", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2397.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "斬服少女", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3251.4, "error": null, "top_titles": ["Isekai Maou to Shoukan Shoujo no Dorei Majutsu 3rd Season", "異世界魔王と召喚少女の奴隷魔術 第3期", "How Not to Summon a Demon Lord Season 3", "Huhuan Shaonu Special: Xiang Zuo de Shi Daodi Shi Shenme", "Huhuan Shaonu Tebie Pian: Xiang Zuo de Shi Daodi Shi Shenme", "呼唤少女特别篇 想做的事到底是什么"], "top_ids": [63912, 63912, 63533]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Gurren Lagann", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 9, "duration_ms": 3560.7, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann", "Tengen Toppa Gurren Lagann: Ore no Gurren wa Pikka-Pika!!", "Tengen Toppa Gurren Lagann: Kirameki★Yoko Box - Pieces of Sweet Stars"], "top_ids": [2001, 10622, 6548]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "天元突破 红莲螺岩", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8276.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "gurren lagann", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 9, "duration_ms": 1720.1, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann", "Tengen Toppa Gurren Lagann: Ore no Gurren wa Pikka-Pika!!", "Tengen Toppa Gurren Lagann: Kirameki★Yoko Box - Pieces of Sweet Stars"], "top_ids": [2001, 10622, 6548]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "fairy tail", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 11, "duration_ms": 5091.2, "error": null, "top_titles": ["Fairy Tail: 100 Years Quest", "Shinji Ishihira", "Toshinori Watanabe", "Fairy Tail", "Tetsuro Amino", "Jun'ichi Kitamura", "Masashi Sogo"], "top_ids": ["24716", "23400", "20846"]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "그렌라간", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4651.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "킬라킬", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7105.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Gurren Lagann", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 1788.1, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann", "Gurren Lagann", "天元突破グレンラガン", "Tengen Toppa Gurren Lagann: Gurren-hen", "Gurren Lagann The Movie: Childhood's End", "天元突破グレンラガン 紅蓮篇", "Tengen Toppa Gurren Lagann: Lagann-hen", "Gurren Lagann The Movie: The Lights in the Sky are Stars"], "top_ids": [2001, 4107, 4565]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ヴィンランド・サガ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3017.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "冰海战记", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12233.7, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Kill la Kill", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3090.2, "error": null, "top_titles": ["Kill la Kill", "KLK", "Dressed to Kill", "Kill la Kill Specials", "Kill la Kill Tokubetsu-hen", "Sayonara wo Mou Ichido", "Naruto: Shippuuden Movie 3 - Hi no Ishi wo Tsugu Mono", "Naruto Shippuuden: Gekijouban Naruto Shippuuden: Hi no Ishi o Tsugu Mono"], "top_ids": [18679, 21659, 6325]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "冰海戰記", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1925.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "ゔぃんらんど・さが", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3069.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "빈란드 사가", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5212.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "盾の勇者の成り上がり", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12335.8, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 56, "mal_id": 18679, "popularity": 59, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "kill la kill", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2460.9, "error": null, "top_titles": ["Kill la Kill", "KLK", "Dressed to Kill", "Kill la Kill Specials", "Kill la Kill Tokubetsu-hen", "Sayonara wo Mou Ichido", "Naruto: Shippuuden Movie 3 - Hi no Ishi wo Tsugu Mono", "Naruto Shippuuden: Gekijouban Naruto Shippuuden: Hi no Ishi o Tsugu Mono"], "top_ids": [18679, 21659, 6325]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "冰海战记", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7053.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "gurren lagann", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 3461.6, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann", "Gurren Lagann", "天元突破グレンラガン", "Tengen Toppa Gurren Lagann: Gurren-hen", "Gurren Lagann The Movie: Childhood's End", "天元突破グレンラガン 紅蓮篇", "Tengen Toppa Gurren Lagann: Lagann-hen", "Gurren Lagann The Movie: The Lights in the Sky are Stars"], "top_ids": [2001, 4107, 4565]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "FAIRY TAIL(フェアリーテイル)", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 3503.4, "error": null, "top_titles": ["Fairy Tail (2014)", "Fairy Tail Season 2", "FAIRY TAIL(フェアリーテイル)", "Fairy Tail", "TV Tokyo", "Fairy Tail: Final Series", "Fairy Tail Season 3", "Fairy Tail (2018)"], "top_ids": [22043, 6702, 35972]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "盾之勇者成名录", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4263.5, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "Tate no Yuusha no Nariagari Season 2", "Tate no Yuusha no Nariagari Season 3"], "top_ids": [35790, 40356, 40357]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "빈란드 사가", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3358.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "盾の勇者の成り上がり", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 2633.6, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "The Rising of the Shield Hero", "盾の勇者の成り上がり", "Tate no Yuusha no Nariagari Season 5", "盾の勇者の成り上がり Season 5", "Tate no Yuusha no Nariagari Season 4", "The Rising of the Shield Hero Season 4", "盾の勇者の成り上がり Season 4"], "top_ids": [99263, 199185, 173780]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "盾之勇者成名錄", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2815.1, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "Tate no Yuusha no Nariagari Season 2", "Tate no Yuusha no Nariagari Season 3"], "top_ids": [35790, 40356, 40357]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "盾之勇者成名录", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 1769.7, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "The Rising of the Shield Hero", "盾の勇者の成り上がり"], "top_ids": [99263]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "FAIRY TAIL(ふぇありーている)", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 3837.5, "error": null, "top_titles": ["Fairy Tail (2014)", "Fairy Tail Season 2", "FAIRY TAIL(フェアリーテイル)", "Fairy Tail", "TV Tokyo", "Fairy Tail: Final Series", "Fairy Tail Season 3", "Fairy Tail (2018)"], "top_ids": [22043, 6702, 35972]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "盾之勇者成名錄", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2337.4, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "Tate no Yuusha no Nariagari Season 2", "Tate no Yuusha no Nariagari Season 3"], "top_ids": [35790, 40356, 40357]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "盾之勇者成名錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2427.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Vinland Saga", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12349.6, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "盾之勇者成名录", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2362.1, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "Tate no Yuusha no Nariagari Season 2", "Tate no Yuusha no Nariagari Season 3"], "top_ids": [35790, 40356, 40357]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "妖精的尾巴", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5368.0, "error": null, "top_titles": ["Hakushaku to Yousei", "Hakushaku to Yosei", "Count and Fairy", "Arve Rezzle: Kikaijikake no Yousei-tachi", "Wakate Animator Ikusei Project", "2012 Young Animator Training Project", "Yao Jing Zhong Zhi Shou Ce", "Fairy Planting Manual"], "top_ids": [4551, 13863, 41093]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "盾之勇者成名錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3515.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Vinland Saga", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 9175.0, "error": null, "top_titles": ["Vinland Saga", "Shūhei Yabuta", "Hiroshi Seko"], "top_ids": ["24508", "20778"]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "盾之勇者成名录", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 1784.8, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "The Rising of the Shield Hero", "盾の勇者の成り上がり"], "top_ids": [99263]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "盾之勇者成名錄", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5118.7, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "Tate no Yuusha no Nariagari Season 2", "Tate no Yuusha no Nariagari Season 3"], "top_ids": [35790, 40356, 40357]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "盾之勇者成名錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2018.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "페어리 테일", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6035.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "盾之勇者成名录", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2354.2, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "The Rising of the Shield Hero", "盾の勇者の成り上がり"], "top_ids": [99263]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "盾之勇者成名录", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3005.9, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "Tate no Yuusha no Nariagari Season 2", "Tate no Yuusha no Nariagari Season 3"], "top_ids": [35790, 40356, 40357]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "vinland saga", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 3239.4, "error": null, "top_titles": ["Vinland Saga", "Vinland Saga Season 2", "Vinland Saga Season 2: Drowning in the Shadow", "Vinland Saga Season 2 Episode 6.5"], "top_ids": ["41084", "44875", "47074"]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "방패 용사 성공담", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3275.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "방패 용사 성공담", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3751.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Fairy Tail", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4103.5, "error": null, "top_titles": ["Fairy Tail", "FAIRY TAIL(フェアリーテイル)", "TV Tokyo", "Fairy Tail (2014)", "Fairy Tail Season 2", "Fairy Tail: Final Series", "Fairy Tail Season 3", "Fairy Tail (2018)"], "top_ids": [6702, 22043, 35972]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "The Rising of the Shield Hero", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2334.0, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "Tate no Yuusha no Nariagari Season 3", "Tate no Yuusha no Nariagari Season 2"], "top_ids": [35790, 40357, 40356]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ダーリン・イン・ザ・フランキス", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 6457.3, "error": null, "top_titles": ["Darling in the FranXX"], "top_ids": ["13600"]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "The Rising of the Shield Hero", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 6384.9, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "The Rising of the Shield Hero", "盾の勇者の成り上がり", "Tate no Yuusha no Nariagari Season 4", "The Rising of the Shield Hero Season 4", "盾の勇者の成り上がり Season 4", "Tate no Yuusha no Nariagari Season 2", "The Rising of the Shield Hero Season 2"], "top_ids": [99263, 173780, 111321]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "the rising of the shield hero", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2029.9, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "Tate no Yuusha no Nariagari Season 3", "Tate no Yuusha no Nariagari Season 2"], "top_ids": [35790, 40357, 40356]} +{"sample_index": 57, "mal_id": 6702, "popularity": 60, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "fairy tail", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3825.1, "error": null, "top_titles": ["Fairy Tail", "FAIRY TAIL(フェアリーテイル)", "TV Tokyo", "Fairy Tail (2014)", "Fairy Tail Season 2", "Fairy Tail: Final Series", "Fairy Tail Season 3", "Fairy Tail (2018)"], "top_ids": [6702, 22043, 35972]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "Charlotte(シャーロット)", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2260.4, "error": null, "top_titles": ["Charlotte", "Charlotte: Tsuyoimono-tachi", "Wakakusa no Charlotte"], "top_ids": [28999, 31553, 3196]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "vinland saga", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13224.7, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ヴィンランド・サガ", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3246.1, "error": null, "top_titles": ["Vinland Saga", "ヴィンランド・サガ", "Production I.G", "Vinland Saga Season 2", "ヴィンランド・サガ SEASON2", "Dentsu", "Vinland Saga Season 2: Drowning in the Shadow", "Vinland Saga Season 2 Episode 6.5"], "top_ids": [37521, 49387, 54463]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "Charlotte(しゃーろっと)", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3653.5, "error": null, "top_titles": ["Issho ni Training Ofuro: Bathtime with Hinako & Hiyoko", "Dondonshi Television Vol. 0: Saito-san wo Shinryaku shita yo.", "Wooser no Sono Higurashi: Ken to Pants to Wooser to"], "top_ids": [9744, 63068, 16738]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "だーりん・いん・ざ・ふらんきす", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9157.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "ゔぃんらんど・さが", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4105.6, "error": null, "top_titles": ["Sanjo Osagari Bushi", "Minna no Uta", "三女・おさがり節", "#Zombie Sagashitemasu", "#ゾンビさがしてます", "#I'm Looking for Zombie", "Asagao to Kase-san.", "Morning Glory and Kase-san"], "top_ids": [59066, 62524, 36214]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "夏洛特", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4143.6, "error": null, "top_titles": ["Ano Natsu de Matteru: Bokutachi wa Koukou Saigo no Natsu wo Sugoshinagara, Ano Natsu de Matteiru.", "Natsume Yuujinchou Roku Specials", "Natsume Yuujinchou Go Specials"], "top_ids": [23447, 36275, 34534]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "情迷弗兰克斯", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5169.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "冰海战记", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3802.5, "error": null, "top_titles": ["Luo Xiaohei Zhanji 2", "The Legend of Hei II", "Luo Xiao Hei Zhan Ji 2", "Luo Xiaohei Zhanji", "Luo Xiao Hei Zhan Ji", "罗小黑战记", "Luo Xiaohei Zhanji: Zhongsheng Zhi Men", "罗小黑战记 众生之门"], "top_ids": [61952, 33443, 48791]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "샤를로트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2139.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "情迷弗蘭克斯", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2293.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ダーリン・イン・ザ・フランキス", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12229.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Charlotte", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 3220.8, "error": null, "top_titles": ["Charlotte", "Wakakusa no Charlotte", "Charlotte: Tsuyoimono-tachi"], "top_ids": [28999, 3196, 31553]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "冰海戰記", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3770.9, "error": null, "top_titles": ["Watashi no Shinri Jissenki", "わたしの真理実践記", "MAT", "Genjitsu Shugi Yuusha no Oukoku Saikenki", "Re:Construction the Elfrieden Kingdom Tales of Realistic Brave", "A Realist Hero's Kingdom Restoration Chronicle", "Seirei Gensouki", "Spirit Chronicles"], "top_ids": [55611, 41710, 44203]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "charlotte", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2738.9, "error": null, "top_titles": ["Charlotte", "Wakakusa no Charlotte", "Charlotte: Tsuyoimono-tachi"], "top_ids": [28999, 3196, 31553]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "the rising of the shield hero", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 6357.6, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "The Rising of the Shield Hero", "盾の勇者の成り上がり", "Tate no Yuusha no Nariagari Season 4", "The Rising of the Shield Hero Season 4", "盾の勇者の成り上がり Season 4", "Tate no Yuusha no Nariagari Season 2", "The Rising of the Shield Hero Season 2"], "top_ids": [99263, 173780, 111321]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "달링 인 더 프랑키스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4529.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "Charlotte(シャーロット)", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2047.2, "error": null, "top_titles": ["Charlotte", "Charlotte(シャーロット)", "Charlotte: Tsuyoimono-tachi", "Charlotte: Strong People", "Charlotte 強い者たち"], "top_ids": [20997, 21339]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "だーりん・いん・ざ・ふらんきす", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5492.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "DARLING in the FRANXX", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2048.3, "error": null, "top_titles": ["Darling in the FranXX"], "top_ids": ["13600"]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "Charlotte(しゃーろっと)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2297.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "情迷弗兰克斯", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3599.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "夏洛特", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3684.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "달링 인 더 프랑키스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3455.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "빈란드 사가", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12238.8, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "샤를로트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2484.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "darling in the franxx", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 5342.4, "error": null, "top_titles": ["Darling in the FranXX"], "top_ids": ["13600"]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "オーバーロード", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 10822.2, "error": null, "top_titles": ["Overlord", "Overlord: Ple Ple Pleiades - Nazarick Saidai no Kiki", "Overlord: Ple Ple Pleiades 2"], "top_ids": [29803, 33372, 37087]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "DARLING in the FRANXX", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3050.4, "error": null, "top_titles": ["DARLING in the FRANXX", "Atsushi Nishigori", "Naotaka Hayashi"], "top_ids": ["19850"]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "アナザー", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 3273.2, "error": null, "top_titles": ["Another", "Another: The Other - Inga", "Another 00", "Another: The Other -Inga-", "Another World"], "top_ids": ["6462", "6569", "42527"]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Charlotte", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 3687.2, "error": null, "top_titles": ["Charlotte", "Charlotte(シャーロット)", "Joou Heika no Petite Angie", "Charlotte Holmes", "女王陛下のプティアンジェ", "Charlotte: Tsuyoimono-tachi", "Charlotte: Strong People", "Charlotte 強い者たち"], "top_ids": [20997, 3435, 21339]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "あなざー", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 2866.3, "error": null, "top_titles": ["Isekai Quartet: Another World"], "top_ids": ["44925"]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Vinland Saga", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7410.1, "error": null, "top_titles": ["Vinland Saga", "ヴィンランド・サガ", "Production I.G", "Vinland Saga Season 2", "ヴィンランド・サガ SEASON2", "Dentsu", "Vinland Saga Season 2: Drowning in the Shadow", "Vinland Saga Season 2 Episode 6.5"], "top_ids": [37521, 49387, 54463]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "charlotte", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 4276.6, "error": null, "top_titles": ["Charlotte", "Charlotte(シャーロット)", "Joou Heika no Petite Angie", "Charlotte Holmes", "女王陛下のプティアンジェ", "Charlotte: Tsuyoimono-tachi", "Charlotte: Strong People", "Charlotte 強い者たち"], "top_ids": [20997, 3435, 21339]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "替身", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2342.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "おーばーろーど", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 10600.4, "error": null, "top_titles": ["Overflow", "Sword Art Online II: Sword Art Offline II", "Bubaga"], "top_ids": [40746, 28063, 29467]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "어나더", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2304.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "OVERLORD", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3175.3, "error": null, "top_titles": ["Overlord", "Overlord: Ple Ple Pleiades - Nazarick Saidai no Kiki", "Overlord Movie: Manner Movie"], "top_ids": [29803, 33372, 36683]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Another", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3251.0, "error": null, "top_titles": ["Another", "Clannad: Mou Hitotsu no Sekai, Tomoyo-hen", "Clannad OVA", "Isekai wa Smartphone to Tomo ni.", "In a Different World with a Smartphone."], "top_ids": ["6462", "3438", "13457"]} +{"sample_index": 58, "mal_id": 37521, "popularity": 61, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "vinland saga", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4669.9, "error": null, "top_titles": ["Vinland Saga", "ヴィンランド・サガ", "Production I.G", "Vinland Saga Season 2", "ヴィンランド・サガ SEASON2", "Dentsu", "Vinland Saga Season 2: Drowning in the Shadow", "Vinland Saga Season 2 Episode 6.5"], "top_ids": [37521, 49387, 54463]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5338.8, "error": null, "top_titles": ["Overlord", "Overlord: Ple Ple Pleiades - Nazarick Saidai no Kiki", "Overlord Movie: Manner Movie"], "top_ids": [29803, 33372, 36683]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ダーリン・イン・ザ・フランキス", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5471.9, "error": null, "top_titles": ["Darling in the FranXX", "ダーリン・イン・ザ・フランキス", "DARLING in the FRANXX", "Darling Klaxon Baby", "ダーリン・クラクション・ベイベー", "Music", "Urusei Yatsura Movie 6: Itsudatte My Darling", "うる星やつら いつだって・マイ・ダーリン"], "top_ids": [35849, 55471, 1925]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "darling in the franxx", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4562.0, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "オーバーロード", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12238.4, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "another", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7189.8, "error": null, "top_titles": ["Another", "Clannad: Mou Hitotsu no Sekai, Tomoyo-hen", "Clannad OVA", "Isekai wa Smartphone to Tomo ni.", "In a Different World with a Smartphone."], "top_ids": ["6462", "3438", "13457"]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "おーばーろーど", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2424.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "だーりん・いん・ざ・ふらんきす", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3020.2, "error": null, "top_titles": ["G-On Riders", "G-on らいだーす", "Shaft", "Nyani ga Nyandaa Nyandaa Kamen", "Mighty Cat Masked Niyander", "ニャニがニャンだー ニャンダーかめん", "G-On Riders Special", "G-On Riders OVA"], "top_ids": [1623, 9810, 24637]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "OVERLORD", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5495.5, "error": null, "top_titles": ["Overlord", "Overlord: Ple Ple Pleiades - Nazarick Saidai no Kiki", "Overlord Movie: Manner Movie"], "top_ids": [29803, 33372, 36683]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "劇場版 鬼滅の刃 無限列車編", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 4357.1, "error": null, "top_titles": ["Kimetsu no Yaiba: Mugen Ressha-hen", "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba: Infinity Train"], "top_ids": ["42586"]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "情迷弗兰克斯", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3453.9, "error": null, "top_titles": ["Meijyou", "迷情", "Poly Animation", "Shen Yin Wangzuo Movie: Yi Lai Ke Si Chuanqi", "Throne of Seal Movie: The Legend of Electrolux", "神印王座剧场版 伊莱克斯传奇", "Monsters: Ippyaku Sanjou Hiryuu Jigoku", "MONSTERS 一百三情飛龍侍極"], "top_ids": [48392, 61508, 56055]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "情迷弗蘭克斯", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3488.2, "error": null, "top_titles": ["Meijyou", "迷情", "Poly Animation", "Shen Yin Wangzuo Movie: Yi Lai Ke Si Chuanqi", "Throne of Seal Movie: The Legend of Electrolux", "神印王座剧场版 伊莱克斯传奇", "Monsters: Ippyaku Sanjou Hiryuu Jigoku", "MONSTERS 一百三情飛龍侍極"], "top_ids": [48392, 61508, 56055]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "鬼灭之刃:无限列车篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4641.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5652.7, "error": null, "top_titles": ["Overlord", "Overlord: Ple Ple Pleiades - Nazarick Saidai no Kiki", "Overlord Movie: Manner Movie"], "top_ids": [29803, 33372, 36683]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "鬼滅之刃:無限列車篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1748.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "달링 인 더 프랑키스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4586.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "OVERLORD", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12185.5, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "鬼滅之刃劇場版 無限列車篇", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 2, "duration_ms": 3644.8, "error": null, "top_titles": ["Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba Movie: Mugen Ressha-hen (TV)", "The Demon Slayer: Kimetsu no Yaiba Mugen Train Arc TV", "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba: Infinity Train"], "top_ids": ["45249", "42586"]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2922.2, "error": null, "top_titles": ["Overlord", "オーバーロード", "Overlord II", "オーバーロードⅡ", "Overlord III", "オーバーロードⅢ"], "top_ids": [20832, 98437, 101474]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "DARLING in the FRANXX", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3109.6, "error": null, "top_titles": ["Darling in the FranXX", "ダーリン・イン・ザ・フランキス", "DARLING in the FRANXX", "Otome wa Boku ni Koishiteru: Futari no Elder The Animation", "Otome wa Boku ni Koishiteru 2", "Otoboku 2", "Otome wa Boku ni Koishiteru", "Otome wa Onee-sama ni Koi Shiteru"], "top_ids": [35849, 9988, 1569]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "OVERLORD", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3004.4, "error": null, "top_titles": ["Overlord", "オーバーロード", "Overlord II", "オーバーロードⅡ", "Overlord III", "オーバーロードⅢ"], "top_ids": [20832, 98437, 101474]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "鬼灭之刃剧场版 无限列车篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7213.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2509.3, "error": null, "top_titles": ["Overlord", "オーバーロード", "Overlord II", "オーバーロードⅡ", "Overlord III", "オーバーロードⅢ"], "top_ids": [20832, 98437, 101474]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "OVERLORD", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13197.5, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "アナザー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 24555.3, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "OVERLORD", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 1845.4, "error": null, "top_titles": ["Overlord", "オーバーロード", "Overlord II", "オーバーロードⅡ", "Overlord III", "オーバーロードⅢ"], "top_ids": [20832, 98437, 101474]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "鬼滅之刃劇場版 無限列車篇", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 2, "duration_ms": 2949.7, "error": null, "top_titles": ["Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba Movie: Mugen Ressha-hen (TV)", "The Demon Slayer: Kimetsu no Yaiba Mugen Train Arc TV", "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba: Infinity Train"], "top_ids": ["45249", "42586"]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3014.1, "error": null, "top_titles": ["Overlord", "Overlord: Ple Ple Pleiades - Nazarick Saidai no Kiki", "Overlord Movie: Manner Movie"], "top_ids": [29803, 33372, 36683]} +{"sample_index": 59, "mal_id": 35849, "popularity": 62, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "darling in the franxx", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7868.4, "error": null, "top_titles": ["Darling in the FranXX", "ダーリン・イン・ザ・フランキス", "DARLING in the FRANXX", "Otome wa Boku ni Koishiteru: Futari no Elder The Animation", "Otome wa Boku ni Koishiteru 2", "Otoboku 2", "Otome wa Boku ni Koishiteru", "Otome wa Onee-sama ni Koi Shiteru"], "top_ids": [35849, 9988, 1569]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "오버로드", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2807.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "鬼灭之刃剧场版 无限列车篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3951.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6642.3, "error": null, "top_titles": ["Overlord", "オーバーロード", "Overlord II", "オーバーロードⅡ", "Overlord III", "オーバーロードⅢ"], "top_ids": [20832, 98437, 101474]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "극장판 귀멸의 칼날 무한열차 편", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 3635.0, "error": null, "top_titles": ["Pororo Geugjangpan Super Sseolmae Daemoheom", "Pororo Geukjangpan Super Sseolmae Daemoheom", "Ghost Messenger Movie", "Sinbi Apartment 10-junyeon Geugjangpan: Han Beon Deo, Sohwan"], "top_ids": ["9548", "10850", "50502"]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "오버로드", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2094.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Overlord", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4456.4, "error": null, "top_titles": ["Overlord", "Overlord: Ple Ple Pleiades - Nazarick Saidai no Kiki", "Overlord Movie: Manner Movie"], "top_ids": [29803, 33372, 36683]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "アナザー", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 7059.0, "error": null, "top_titles": ["Another", "アナザー", "Lantis", "Angel Beats! Another Epilogue", "エンジェルビーツ! アナザーエピローグ", "Aniplex", "Another: The Other - Inga", "Another 00"], "top_ids": [11111, 10067, 11701]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2411.7, "error": null, "top_titles": ["Overlord", "Overlord: Ple Ple Pleiades - Nazarick Saidai no Kiki", "Overlord Movie: Manner Movie"], "top_ids": [29803, 33372, 36683]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Overlord", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2469.5, "error": null, "top_titles": ["Overlord", "オーバーロード", "Overlord II", "オーバーロードⅡ", "Overlord III", "オーバーロードⅢ"], "top_ids": [20832, 98437, 101474]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3547.4, "error": null, "top_titles": ["Kimetsu no Yaiba: Mugen Ressha-hen", "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba: Infinity Train", "Kimetsu no Yaiba Movie: Mugen Ressha-hen (TV)", "The Demon Slayer: Kimetsu no Yaiba Mugen Train Arc TV", "Kimetsu no Yaiba: Mugenjou-hen Movie 1 - Akaza Sairai", "Demon Slayer: Kimetsu no Yaiba the Movie - Infinity Castle", "Demon Slayer: Kimetsu no Yaiba La Forteresse infinie"], "top_ids": ["42586", "45249", "49001"]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "あなざー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12279.9, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 1999.9, "error": null, "top_titles": ["Overlord", "オーバーロード", "Overlord II", "オーバーロードⅡ", "Overlord III", "オーバーロードⅢ"], "top_ids": [20832, 98437, 101474]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "サイコパス", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2488.7, "error": null, "top_titles": ["Psycho-Pass", "Psycho-Pass Movie 1", "Psycho-Pass 2"], "top_ids": [13601, 21339, 23281]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "あなざー", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 4504.1, "error": null, "top_titles": ["Isekai Quartet Movie: Another World", "Gekijouban Isekai Quartet: Another World", "劇場版 異世界かるてっと ~あなざーわーるど~", "Geats Extra: Geats Anime - Another Grand Prix", "ギーツエクストラ ギーツあにめ あなざーぐらんぷり", "Comedy", "Overlord: Ple Ple Pleiades - Nazarick Saidai no Kiki", "Overlord OVA"], "top_ids": [41567, 56206, 33372]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "さいこぱす", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2671.2, "error": null, "top_titles": ["Dosukoi! Wanpaku Dohyou", "Super Nuko ni Naritai", "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita"], "top_ids": [25299, 58256, 44037]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "サイコパス", "hit": true, "position": 0, "kind": "id", "n_returned": 9, "duration_ms": 3847.0, "error": null, "top_titles": ["PSYCHO-PASS", "PSYCHO-PASS サイコパス", "PSYCHO-PASS 3", "PSYCHO-PASS サイコパス3", "PSYCHO-PASS 2", "PSYCHO-PASS サイコパス2"], "top_ids": [13601, 108307, 20513]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "替身", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5282.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "demon slayer kimetsu no yaiba the movie mugen train", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3008.8, "error": null, "top_titles": ["Kimetsu no Yaiba: Mugen Ressha-hen", "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba: Infinity Train", "Kimetsu no Yaiba Movie: Mugen Ressha-hen (TV)", "The Demon Slayer: Kimetsu no Yaiba Mugen Train Arc TV", "Kimetsu no Yaiba: Mugenjou-hen Movie 1 - Akaza Sairai", "Demon Slayer: Kimetsu no Yaiba the Movie - Infinity Castle", "Demon Slayer: Kimetsu no Yaiba La Forteresse infinie"], "top_ids": ["42586", "45249", "49001"]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "替身", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4236.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "さいこぱす", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3644.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "PSYCHO-PASS心靈判官", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5164.1, "error": null, "top_titles": ["Psycho-Pass", "Psycho-Pass 2", "Psycho-Pass 3"], "top_ids": [13601, 23281, 39491]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "어나더", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3361.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "PSYCHO-PASS心靈判官", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3741.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "PSYCHO-PASS心灵判官", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3038.4, "error": null, "top_titles": ["Mu Qi Ling 3: Qi Ling Zhi Xin", "Psycho-Pass", "Psycho-Pass 2"], "top_ids": [44472, 13601, 23281]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "어나더", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8709.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Another", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4758.5, "error": null, "top_titles": ["Another", "アナザー", "Lantis", "Another: Misaki Mei - Shizukani", "Another: Flash Animation", "Another Special", "Tennis no Oujisama: Another Story - Kako to Mirai no Message", "Tennis no Ouji-sama OVA Another Story: Kako to Mirai no Message"], "top_ids": [11111, 20365, 5751]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "PSYCHO-PASS心灵判官", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3346.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "PSYCHO-PASS心靈判官", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3514.3, "error": null, "top_titles": ["Psycho-Pass", "Psycho-Pass 2", "Psycho-Pass 3"], "top_ids": [13601, 23281, 39491]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Another", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 3, "duration_ms": 2359.8, "error": null, "top_titles": ["Another World", "Mado Nozaki", "Minami Hamabe", "Another", "Tsutomu Mizushima", "Ryō Higaki", "Another Lady Innocent", "Kinji Yoshimoto"], "top_ids": ["22467", "13258", "3411"]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ソウルイーター", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12274.8, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "PSYCHO-PASS心灵判官", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3146.3, "error": null, "top_titles": ["Mu Qi Ling 3: Qi Ling Zhi Xin", "Psycho-Pass", "Psycho-Pass 2"], "top_ids": [44472, 13601, 23281]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "another", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4215.5, "error": null, "top_titles": ["Another", "アナザー", "Lantis", "Another: Misaki Mei - Shizukani", "Another: Flash Animation", "Another Special", "Tennis no Oujisama: Another Story - Kako to Mirai no Message", "Tennis no Ouji-sama OVA Another Story: Kako to Mirai no Message"], "top_ids": [11111, 20365, 5751]} +{"sample_index": 60, "mal_id": 11111, "popularity": 63, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "another", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 3, "duration_ms": 4098.8, "error": null, "top_titles": ["Another World", "Mado Nozaki", "Minami Hamabe", "Another", "Tsutomu Mizushima", "Ryō Higaki", "Another Lady Innocent", "Kinji Yoshimoto"], "top_ids": ["22467", "13258", "3411"]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "そうるいーたー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3056.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "PSYCHO-PASS心靈判官", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5523.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "사이코패스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2384.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "劇場版 鬼滅の刃 無限列車編", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3677.2, "error": null, "top_titles": ["Kimetsu no Yaiba Movie: Mugen Ressha-hen", "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba: Infinity Train", "Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編", "Demon Slayer: Kimetsu no Yaiba - The Movie 3: Infinity Castle", "Kimetsu no Yaiba Movie 2: Mugenjou-hen", "Demon Slayer: Kimetsu no Yaiba - The Movie 2: Infinity Castle"], "top_ids": [40456, 62547, 62546]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "PSYCHO-PASS心灵判官", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2419.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Psycho-Pass", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3090.9, "error": null, "top_titles": ["Psycho-Pass", "Psycho-Pass Movie 1", "Psycho-Pass 2"], "top_ids": [13601, 21339, 23281]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "소울 이터", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3654.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "劇場版 鬼滅の刃 無限列車編", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5408.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "鬼灭之刃:无限列车篇", "hit": true, "position": 9, "kind": "id", "n_returned": 10, "duration_ms": 2939.2, "error": null, "top_titles": ["Oni", "The Demon", "鬼", "Kenki Virgo", "Sword Demon Virgo", "剣鬼バルゴ", "Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編"], "top_ids": [7171, 63026, 62547]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "사이코패스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3426.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "鬼灭之刃:无限列车篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2772.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Soul Eater", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 4288.6, "error": null, "top_titles": ["Soul Eater", "SOUL EATER", "Soul Eater NOT!", "Soul Eater Not!", "SEN!", "Soul Eater: Late Night Show"], "top_ids": ["3128", "8151", "8597"]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "鬼滅之刃:無限列車篇", "hit": true, "position": 3, "kind": "id", "n_returned": 10, "duration_ms": 4173.2, "error": null, "top_titles": ["Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編", "Demon Slayer: Kimetsu no Yaiba - The Movie 3: Infinity Castle", "Kimetsu no Yaiba Movie 2: Mugenjou-hen", "Demon Slayer: Kimetsu no Yaiba - The Movie 2: Infinity Castle", "Kimetsu no Yaiba", "Blade of Demon Destruction", "鬼滅の刃"], "top_ids": [62547, 62546, 38000]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Psycho-Pass", "hit": true, "position": 0, "kind": "id", "n_returned": 9, "duration_ms": 3596.1, "error": null, "top_titles": ["PSYCHO-PASS", "PSYCHO-PASS サイコパス", "PSYCHO-PASS 3", "PSYCHO-PASS サイコパス3", "PSYCHO-PASS 2", "PSYCHO-PASS サイコパス2"], "top_ids": [13601, 108307, 20513]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "鬼滅之刃劇場版 無限列車篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2665.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "psycho pass", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7326.3, "error": null, "top_titles": ["Psycho-Pass", "Psycho-Pass Movie 1", "Psycho-Pass 2"], "top_ids": [13601, 21339, 23281]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "鬼滅之刃劇場版 無限列車篇", "hit": true, "position": 3, "kind": "id", "n_returned": 10, "duration_ms": 2533.4, "error": null, "top_titles": ["Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編", "Demon Slayer: Kimetsu no Yaiba - The Movie 3: Infinity Castle", "Kimetsu no Yaiba Movie 2: Mugenjou-hen", "Demon Slayer: Kimetsu no Yaiba - The Movie 2: Infinity Castle", "Kimetsu no Yaiba", "Blade of Demon Destruction", "鬼滅の刃"], "top_ids": [62547, 62546, 38000]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "psycho pass", "hit": true, "position": 0, "kind": "id", "n_returned": 9, "duration_ms": 2977.0, "error": null, "top_titles": ["PSYCHO-PASS", "PSYCHO-PASS サイコパス", "PSYCHO-PASS 3", "PSYCHO-PASS サイコパス3", "PSYCHO-PASS 2", "PSYCHO-PASS サイコパス2"], "top_ids": [13601, 108307, 20513]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "鬼滅之刃劇場版 無限列車篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2938.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "食戟のソーマ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3183.2, "error": null, "top_titles": ["Shokugeki no Souma", "Shokugeki no Souma OVA", "Shokugeki no Souma: San no Sara - Kyokuseiryou no Erina"], "top_ids": [28171, 31327, 36962]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "食戟のソーマ", "hit": true, "position": 0, "kind": "id", "n_returned": 9, "duration_ms": 3344.0, "error": null, "top_titles": ["Shokugeki no Souma", "Food Wars!", "食戟のソーマ", "Shokugeki no Souma OVA", "Food Wars! Shokugeki no Soma OVA", "食戟のソーマ OVA", "Shokugeki no Souma: Ni no Sara", "Food Wars! The Second Plate"], "top_ids": [20923, 21691, 21518]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "soul eater", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 2946.8, "error": null, "top_titles": ["Soul Eater", "SOUL EATER", "Soul Eater NOT!", "Soul Eater Not!", "SEN!", "Soul Eater: Late Night Show"], "top_ids": ["3128", "8151", "8597"]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "극장판 귀멸의 칼날 무한열차 편", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4710.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "食戟之灵", "hit": true, "position": 5, "kind": "title_exact", "n_returned": 10, "duration_ms": 5194.5, "error": null, "top_titles": ["Mu Qi Ling: Lu Ying Zhan Ling", "Mu Qi Ling 3: Qi Ling Zhi Xin", "Mu Qi Ling 2: Sheng Tian Ling Zhong"], "top_ids": [44470, 44472, 44471]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "食戟之灵", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 3425.7, "error": null, "top_titles": ["Shokugeki no Souma", "Food Wars!", "食戟のソーマ", "Shokugeki no Souma: Ni no Sara", "Food Wars! The Second Plate", "食戟のソーマ 弍ノ皿", "Shokugeki no Souma: Gou no Sara", "Food Wars! The Fifth Plate"], "top_ids": [20923, 21518, 114043]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "天元突破グレンラガン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 4915.5, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann", "Tengen Toppa Gurren-Lagann", "Making Break-Through Gurren Lagann", "Tengen Toppa Gurren Lagann Movie 2: Lagann-hen", "Tengen Toppa Gurren Lagann Movie 2", "Tengen Toppa Gurren Lagann Movie 1: Gurren-hen", "Gekijouban Tengen Toppa Gurren Lagann: Guren-hen", "Tengen Toppa Gurren Lagann the Movie"], "top_ids": ["1801", "3689", "3471"]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "鬼灭之刃剧场版 无限列车篇", "hit": true, "position": 9, "kind": "id", "n_returned": 10, "duration_ms": 9795.7, "error": null, "top_titles": ["Oni", "The Demon", "鬼", "Kenki Virgo", "Sword Demon Virgo", "剣鬼バルゴ", "Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編"], "top_ids": [7171, 63026, 62547]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 4593.0, "error": null, "top_titles": ["Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train", "Haruo Sotozaki", "Takahiro Miura"], "top_ids": ["23040"]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "食戟之靈", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 4567.9, "error": null, "top_titles": ["Meishi Da Maoxian: Wenming Zhi Lu", "Meishi Da Maoxian: Huore Zhi Lu", "Shokugeki no Souma"], "top_ids": [45051, 45050, 28171]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "食戟之靈", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4636.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "鬼滅之刃劇場版 無限列車篇", "hit": true, "position": 3, "kind": "id", "n_returned": 10, "duration_ms": 4979.0, "error": null, "top_titles": ["Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編", "Demon Slayer: Kimetsu no Yaiba - The Movie 3: Infinity Castle", "Kimetsu no Yaiba Movie 2: Mugenjou-hen", "Demon Slayer: Kimetsu no Yaiba - The Movie 2: Infinity Castle", "Kimetsu no Yaiba", "Blade of Demon Destruction", "鬼滅の刃"], "top_ids": [62547, 62546, 38000]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "食戟之靈", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 3015.1, "error": null, "top_titles": ["Meishi Da Maoxian: Wenming Zhi Lu", "Meishi Da Maoxian: Huore Zhi Lu", "Shokugeki no Souma"], "top_ids": [45051, 45050, 28171]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "食戟之靈", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4551.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "食戟之灵", "hit": true, "position": 5, "kind": "title_exact", "n_returned": 10, "duration_ms": 2722.9, "error": null, "top_titles": ["Mu Qi Ling: Lu Ying Zhan Ling", "Mu Qi Ling 3: Qi Ling Zhi Xin", "Mu Qi Ling 2: Sheng Tian Ling Zhong"], "top_ids": [44470, 44472, 44471]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "鬼灭之刃剧场版 无限列车篇", "hit": true, "position": 9, "kind": "id", "n_returned": 10, "duration_ms": 3818.4, "error": null, "top_titles": ["Oni", "The Demon", "鬼", "Kenki Virgo", "Sword Demon Virgo", "剣鬼バルゴ", "Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編"], "top_ids": [7171, 63026, 62547]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "食戟之灵", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 3387.8, "error": null, "top_titles": ["Shokugeki no Souma", "Food Wars!", "食戟のソーマ", "Shokugeki no Souma: Ni no Sara", "Food Wars! The Second Plate", "食戟のソーマ 弍ノ皿", "Shokugeki no Souma: Gou no Sara", "Food Wars! The Fifth Plate"], "top_ids": [20923, 21518, 114043]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "食戟之靈", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 2469.3, "error": null, "top_titles": ["Meishi Da Maoxian: Wenming Zhi Lu", "Meishi Da Maoxian: Huore Zhi Lu", "Shokugeki no Souma"], "top_ids": [45051, 45050, 28171]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "극장판 귀멸의 칼날 무한열차 편", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2197.9, "error": null, "top_titles": ["Geugjangpan Beuledeu Movie: Bakerytown-ui Agdangdeul", "극장판 브레드 이발소: 베이커리타운의 악당들", "Bread Barbershop: The Bakerytown Baddies", "Ghost Messenger Movie", "Ghost Messenger Geugjangpan", "고스트 메신저 극장판", "Pororo Geugjangpan Super Sseolmae Daemoheom", "Pororo Geukjangpan Super Sseolmae Daemoheom"], "top_ids": [62461, 30278, 27463]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "天元突破 紅蓮螺巖", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12242.1, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "食戟之靈", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1970.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "食戟之灵", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 2512.9, "error": null, "top_titles": ["Shokugeki no Souma", "Food Wars!", "食戟のソーマ", "Shokugeki no Souma: Ni no Sara", "Food Wars! The Second Plate", "食戟のソーマ 弍ノ皿", "Shokugeki no Souma: Gou no Sara", "Food Wars! The Fifth Plate"], "top_ids": [20923, 21518, 114043]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "食戟之灵", "hit": true, "position": 5, "kind": "title_exact", "n_returned": 10, "duration_ms": 6119.3, "error": null, "top_titles": ["Mu Qi Ling: Lu Ying Zhan Ling", "Mu Qi Ling 3: Qi Ling Zhi Xin", "Mu Qi Ling 2: Sheng Tian Ling Zhong"], "top_ids": [44470, 44472, 44471]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "식극의 소마", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1841.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "天元突破 红莲螺岩", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 2, "duration_ms": 6386.4, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann: Mitee Mono wa Miteen da!!", "Tengen Toppa Gurren Lagann Episode 6", "Tengen Toppa Gurren Lagann Special", "Tengen Toppa Gurren Lagann: Ore no Gurren wa Pikka-Pika!!", "Tengen Toppa Gurren Lagann Episode 5.5", "Tengen Toppa Gurren Lagann OVA"], "top_ids": ["2950", "6267"]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Food Wars! Shokugeki no Soma", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 2194.5, "error": null, "top_titles": ["Shokugeki no Souma OVA", "Food Wars! Shokugeki no Soma OVA", "食戟のソーマ OVA"], "top_ids": [21691]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "天元突破 紅蓮螺巖", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 2, "duration_ms": 2201.8, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann: Mitee Mono wa Miteen da!!", "Tengen Toppa Gurren Lagann Episode 6", "Tengen Toppa Gurren Lagann Special", "Tengen Toppa Gurren Lagann: Ore no Gurren wa Pikka-Pika!!", "Tengen Toppa Gurren Lagann Episode 5.5", "Tengen Toppa Gurren Lagann OVA"], "top_ids": ["2950", "6267"]} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "demon slayer kimetsu no yaiba the movie mugen train", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 11516.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12282.0, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ソウルイーター", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3484.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "식극의 소마", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8254.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "food wars shokugeki no soma", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 4720.4, "error": null, "top_titles": ["Shokugeki no Souma OVA", "Food Wars! Shokugeki no Soma OVA", "食戟のソーマ OVA"], "top_ids": [21691]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "天元突破 红莲螺岩", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 2, "duration_ms": 5743.3, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann: Mitee Mono wa Miteen da!!", "Tengen Toppa Gurren Lagann Episode 6", "Tengen Toppa Gurren Lagann Special", "Tengen Toppa Gurren Lagann: Ore no Gurren wa Pikka-Pika!!", "Tengen Toppa Gurren Lagann Episode 5.5", "Tengen Toppa Gurren Lagann OVA"], "top_ids": ["2950", "6267"]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "そうるいーたー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2224.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Food Wars! Shokugeki no Soma", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2979.8, "error": null, "top_titles": ["Shokugeki no Souma", "Shokugeki no Souma: Ni no Sara", "Shokugeki no Souma OVA"], "top_ids": [28171, 32282, 31327]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "鬼滅の刃 遊郭編", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3081.0, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", "鬼滅の刃 遊郭編"], "top_ids": [142329]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "그렌라간", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4402.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "鬼灭之刃 游郭篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2445.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 61, "mal_id": 40456, "popularity": 64, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "demon slayer kimetsu no yaiba the movie mugen train", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5747.9, "error": null, "top_titles": ["Kimetsu no Yaiba Movie: Mugen Ressha-hen", "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", "Kimetsu no Yaiba: Infinity Train", "Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編", "Demon Slayer: Kimetsu no Yaiba - The Movie 3: Infinity Castle", "Kimetsu no Yaiba Movie 2: Mugenjou-hen", "Demon Slayer: Kimetsu no Yaiba - The Movie 2: Infinity Castle"], "top_ids": [40456, 62547, 62546]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Gurren Lagann", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3052.2, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann", "Tengen Toppa Gurren-Lagann", "Making Break-Through Gurren Lagann", "Tengen Toppa Gurren Lagann Movie 2: Lagann-hen", "Tengen Toppa Gurren Lagann Movie 2", "Tengen Toppa Gurren Lagann Movie 1: Gurren-hen", "Gekijouban Tengen Toppa Gurren Lagann: Guren-hen", "Tengen Toppa Gurren Lagann the Movie"], "top_ids": ["1801", "3689", "3471"]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "鬼滅之刃 遊郭篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2585.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ソウルイーター", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 4036.2, "error": null, "top_titles": ["Soul Eater", "ソウルイーター", "TV Tokyo", "Shoujo Senki Soul Eater", "少女戦機 ソウルイーター", "Lune-Pictures"], "top_ids": [3588, 9328]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "そうるいーたー", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2470.6, "error": null, "top_titles": ["Coo: Tooi Umi kara Kita Coo", "Coo of the Far Seas", "Coo: Come From a Distant Ocean Coo", "Kenritsu Umisora Koukou Yakyuubu-in Yamashita Tarou-kun", "県立海空高校野球部員山下たろーくん", "Shin-Ei Animation", "Miitsuketa!", "みーつけた!"], "top_ids": [2055, 27837, 26107]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "food wars shokugeki no soma", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3461.9, "error": null, "top_titles": ["Shokugeki no Souma", "Shokugeki no Souma: Ni no Sara", "Shokugeki no Souma OVA"], "top_ids": [28171, 32282, 31327]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "소울 이터", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13224.9, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "鬼滅之刃 遊郭篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7234.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "鬼滅の刃 遊郭編", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3631.9, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba: Katanakaji no Sato-hen", "Kimetsu no Yaiba: Hashira Geiko-hen"], "top_ids": [47778, 51019, 55701]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Soul Eater", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 2, "duration_ms": 5269.6, "error": null, "top_titles": ["Soul Eater Not!", "Masakazu Hashimoto", "Misaki Morie", "Soul Eater", "Takuya Igarashi", "Akatsuki Yamatoya"], "top_ids": ["15770", "9070"]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "gurren lagann", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4257.0, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann", "Tengen Toppa Gurren-Lagann", "Making Break-Through Gurren Lagann", "Tengen Toppa Gurren Lagann Movie 2: Lagann-hen", "Tengen Toppa Gurren Lagann Movie 2", "Tengen Toppa Gurren Lagann Movie 1: Gurren-hen", "Gekijouban Tengen Toppa Gurren Lagann: Guren-hen", "Tengen Toppa Gurren Lagann the Movie"], "top_ids": ["1801", "3689", "3471"]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "鬼灭之刃 游郭篇", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3843.9, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Menghuan Xiyou", "Menghuan Xiyou: Tianming Zhi Zhan"], "top_ids": [47778, 33600, 44302]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "鬼灭之刃 游郭篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6901.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "盾の勇者の成り上がり", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 4155.4, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "Tate no Yuusha no Nariagari Season 2", "ผู้กล้าโล่ผงาด ภาค 2", "Восхождение героя щита 2", "Tate no Yuusha no Nariagari Season 3"], "top_ids": ["13593", "42530", "42531"]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "鬼滅之刃 遊郭篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2936.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "鬼滅之刃 遊郭篇", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5723.2, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba", "Kimetsu no Yaiba: Hashira Geiko-hen"], "top_ids": [47778, 38000, 55701]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "盾之勇者成名录", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3055.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "소울 이터", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14889.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "盾之勇者成名錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2465.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Soul Eater", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2958.3, "error": null, "top_titles": ["Soul Eater", "ソウルイーター", "TV Tokyo", "Soul Eater NOT!", "SEN!", "ソウルイーターノット!", "Soul Eater: Late Night Show", "ソウルイーターレイトショー"], "top_ids": [3588, 21507, 21195]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "鬼灭之刃 游郭篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5322.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "귀멸의 칼날: 유곽 편", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2308.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "鬼滅之刃 遊郭篇", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7127.3, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba", "Kimetsu no Yaiba: Hashira Geiko-hen"], "top_ids": [47778, 38000, 55701]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "盾之勇者成名錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4093.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "盾之勇者成名录", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1708.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3737.6, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", "鬼滅の刃 遊郭編"], "top_ids": [142329]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "soul eater", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 2, "duration_ms": 4621.2, "error": null, "top_titles": ["Soul Eater Not!", "Masakazu Hashimoto", "Misaki Morie", "Soul Eater", "Takuya Igarashi", "Akatsuki Yamatoya"], "top_ids": ["15770", "9070"]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "鬼灭之刃 游郭篇", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5509.3, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Menghuan Xiyou", "Menghuan Xiyou: Tianming Zhi Zhan"], "top_ids": [47778, 33600, 44302]} +{"sample_index": 62, "mal_id": 3588, "popularity": 65, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "soul eater", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4884.9, "error": null, "top_titles": ["Soul Eater", "ソウルイーター", "TV Tokyo", "Soul Eater NOT!", "SEN!", "ソウルイーターノット!", "Soul Eater: Late Night Show", "ソウルイーターレイトショー"], "top_ids": [3588, 21507, 21195]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "鬼滅之刃 遊郭篇", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2822.2, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba", "Kimetsu no Yaiba: Hashira Geiko-hen"], "top_ids": [47778, 38000, 55701]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "盾之勇者成名錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8100.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "demon slayer kimetsu no yaiba entertainment district arc", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 4470.8, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", "鬼滅の刃 遊郭編"], "top_ids": [142329]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "天元突破グレンラガン", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3381.4, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann", "Tengen Toppa Gurren-Lagann", "Making Break-Through Gurren Lagann", "Tengen Toppa Gurren Lagann Movie 2: Lagann-hen", "Tengen Toppa Gurren Lagann Movie 2", "劇場版 天元突破グレンラガン 螺巌篇", "Tengen Toppa Gurren Lagann Movie 1: Gurren-hen", "Gekijouban Tengen Toppa Gurren Lagann: Guren-hen"], "top_ids": [2001, 4565, 4107]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "鬼灭之刃 游郭篇", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2133.4, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Menghuan Xiyou", "Menghuan Xiyou: Tianming Zhi Zhan"], "top_ids": [47778, 33600, 44302]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "モブサイコ100 II", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2730.5, "error": null, "top_titles": ["Mob Psycho 100 II", "モブサイコ100 II", "Mob Psycho 100 III", "モブサイコ100 Ⅲ"], "top_ids": [101338, 140439]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "盾之勇者成名录", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2976.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "귀멸의 칼날: 유곽 편", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3132.1, "error": null, "top_titles": ["Yeon-ui Pyeonji PV", "Yeon-ui Pyeonji", "Wiheomhan Pyeonuijeom"], "top_ids": [52877, 60020, 61764]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "天元突破 紅蓮螺巖", "hit": true, "position": 1, "kind": "id", "n_returned": 8, "duration_ms": 4000.5, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann Movie 1: Gurren-hen", "Gekijouban Tengen Toppa Gurren Lagann: Guren-hen", "Tengen Toppa Gurren Lagann the Movie", "Tengen Toppa Gurren Lagann", "Tengen Toppa Gurren-Lagann", "Making Break-Through Gurren Lagann", "Tengen Toppa Gurren Lagann Movie 2: Lagann-hen", "Tengen Toppa Gurren Lagann Movie 2"], "top_ids": [4107, 2001, 4565]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "もぶさいこ100 II", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2394.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "방패 용사 성공담", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3208.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "天元突破 红莲螺岩", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3602.0, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann", "Tengen Toppa Gurren-Lagann", "Making Break-Through Gurren Lagann", "Tengen Toppa Gurren Lagann Movie 2: Lagann-hen", "Tengen Toppa Gurren Lagann Movie 2", "劇場版 天元突破グレンラガン 螺巌篇", "Tengen Toppa Gurren Lagann Movie 1: Gurren-hen", "Gekijouban Tengen Toppa Gurren Lagann: Guren-hen"], "top_ids": [2001, 4565, 4107]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "天元突破グレンラガン", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14209.9, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "The Rising of the Shield Hero", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 3132.1, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "Tate no Yuusha no Nariagari Season 2", "ผู้กล้าโล่ผงาด ภาค 2", "Восхождение героя щита 2", "Tate no Yuusha no Nariagari Season 3"], "top_ids": ["13593", "42530", "42531"]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "灵能百分百", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5944.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "天元突破 紅蓮螺巖", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2933.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "天元突破 紅蓮螺巖", "hit": true, "position": 1, "kind": "id", "n_returned": 8, "duration_ms": 5250.7, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann Movie 1: Gurren-hen", "Gekijouban Tengen Toppa Gurren Lagann: Guren-hen", "Tengen Toppa Gurren Lagann the Movie", "Tengen Toppa Gurren Lagann", "Tengen Toppa Gurren-Lagann", "Making Break-Through Gurren Lagann", "Tengen Toppa Gurren Lagann Movie 2: Lagann-hen", "Tengen Toppa Gurren Lagann Movie 2"], "top_ids": [4107, 2001, 4565]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "靈能百分百", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2230.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "天元突破 紅蓮螺巖", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2641.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 10999.3, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba: Hashira Geiko-hen", "Kimetsu no Yaiba: Mugen Ressha-hen"], "top_ids": [47778, 55701, 49926]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "天元突破 红莲螺岩", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2476.0, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann", "Tengen Toppa Gurren-Lagann", "Making Break-Through Gurren Lagann", "Tengen Toppa Gurren Lagann Movie 2: Lagann-hen", "Tengen Toppa Gurren Lagann Movie 2", "劇場版 天元突破グレンラガン 螺巌篇", "Tengen Toppa Gurren Lagann Movie 1: Gurren-hen", "Gekijouban Tengen Toppa Gurren Lagann: Guren-hen"], "top_ids": [2001, 4565, 4107]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "그렌라간", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2791.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "路人超能100 II", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3703.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "그렌라간", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2647.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "모브 사이코 100", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2491.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "the rising of the shield hero", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 6127.3, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "Tate no Yuusha no Nariagari Season 2", "ผู้กล้าโล่ผงาด ภาค 2", "Восхождение героя щита 2", "Tate no Yuusha no Nariagari Season 3"], "top_ids": ["13593", "42530", "42531"]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "demon slayer kimetsu no yaiba entertainment district arc", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3389.3, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba: Hashira Geiko-hen", "Kimetsu no Yaiba: Mugen Ressha-hen"], "top_ids": [47778, 55701, 49926]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Gurren Lagann", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4124.2, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann", "Tengen Toppa Gurren-Lagann", "Making Break-Through Gurren Lagann", "Tengen Toppa Gurren Lagann Movie 2: Lagann-hen", "Tengen Toppa Gurren Lagann Movie 2", "劇場版 天元突破グレンラガン 螺巌篇", "Tengen Toppa Gurren Lagann Movie 1: Gurren-hen", "Gekijouban Tengen Toppa Gurren Lagann: Guren-hen"], "top_ids": [2001, 4565, 4107]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "モブサイコ100 II", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2366.5, "error": null, "top_titles": ["Mob Psycho 100 II", "Kakyuusei 2: Hitomi no Naka no Shoujo-tachi", "Weiqi Shaonian 2"], "top_ids": [37510, 510, 19839]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Mob Psycho 100 II", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2939.6, "error": null, "top_titles": ["Mob Psycho 100 II", "モブサイコ100 II", "Mob Psycho 100 III", "モブサイコ100 Ⅲ", "Mob Psycho 100: Daiikkai Rei toka Soudansho Ian Ryokou - Kokoro Mitasu Iyashi no Tabi", "Mob Psycho 100 II: The First Spirits and Such Company Trip ~A Journey that Mends the Heart and Heals the Soul~", "モブサイコ100 第一回霊とか相談所慰安旅行~ココロ満たす癒やしの旅~"], "top_ids": [101338, 140439, 109819]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "Charlotte(シャーロット)", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2776.9, "error": null, "top_titles": ["Charlotte", "Charlotte: Tsuyoimono-tachi", "Charlotte Special", "Strong People"], "top_ids": ["10103", "11365"]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "Charlotte(しゃーろっと)", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 3456.2, "error": null, "top_titles": ["Charlotte", "Charlotte: Tsuyoimono-tachi", "Charlotte Special", "Strong People"], "top_ids": ["10103", "11365"]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "もぶさいこ100 II", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 4581.2, "error": null, "top_titles": ["Iya na Kao sare nagara Opantsu Misete Moraitai 2", "Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "Doushitemo Eto ni Hairitai 2"], "top_ids": [38163, 34626, 52030]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Gurren Lagann", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 5, "duration_ms": 11781.9, "error": null, "top_titles": ["Gurren Lagann Parallel Works 2", "Sushio", "Atsushi Nishigori", "Gurren Lagann Parallel Works", "Hiroyuki Yamaga", "Shin Itagaki", "Gurren Lagann the Movie – The Lights in the Sky Are Stars", "Hiroyuki Imaishi"], "top_ids": ["15324", "15323", "10576"]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "夏洛特", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2733.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "灵能百分百", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 10, "duration_ms": 2826.3, "error": null, "top_titles": ["Hyakki", "Hyaku", "Bai Yao Pu"], "top_ids": [1782, 49366, 41224]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "gurren lagann", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4397.8, "error": null, "top_titles": ["Tengen Toppa Gurren Lagann", "Tengen Toppa Gurren-Lagann", "Making Break-Through Gurren Lagann", "Tengen Toppa Gurren Lagann Movie 2: Lagann-hen", "Tengen Toppa Gurren Lagann Movie 2", "劇場版 天元突破グレンラガン 螺巌篇", "Tengen Toppa Gurren Lagann Movie 1: Gurren-hen", "Gekijouban Tengen Toppa Gurren Lagann: Guren-hen"], "top_ids": [2001, 4565, 4107]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "샤를로트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2682.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "mob psycho 100 ii", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 4666.9, "error": null, "top_titles": ["Mob Psycho 100 II", "モブサイコ100 II", "Mob Psycho 100 III", "モブサイコ100 Ⅲ", "Mob Psycho 100: Daiikkai Rei toka Soudansho Ian Ryokou - Kokoro Mitasu Iyashi no Tabi", "Mob Psycho 100 II: The First Spirits and Such Company Trip ~A Journey that Mends the Heart and Heals the Soul~", "モブサイコ100 第一回霊とか相談所慰安旅行~ココロ満たす癒やしの旅~"], "top_ids": [101338, 140439, 109819]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "靈能百分百", "hit": true, "position": 1, "kind": "title_substring", "n_returned": 10, "duration_ms": 2871.5, "error": null, "top_titles": ["Hyakki", "Hyaku", "Bai Yao Pu"], "top_ids": [1782, 49366, 41224]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "あの日見た花の名前を僕達はまだ知らない。", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 1255.9, "error": null, "top_titles": ["Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", "Anohana: The Flower We Saw That Day", "あの日見た花の名前を僕達はまだ知らない。", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", "Anohana the Movie: The Flower We Saw That Day", "劇場版 あの日見た花の名前を僕達はまだ知らない。", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.: Menma e no Tegami", "あの日見た花の名前を僕達はまだ知らない。「めんまへの手紙」"], "top_ids": [9989, 15039, 107342]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "路人超能100 II", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 3225.9, "error": null, "top_titles": ["Kinnikuman II Sei: Muscle Ninjin Soudatsu sen! Choujin Daisensou", "Kaixin Chaoren 2: Qi Yuan Xing Zhi Zhan", "Chao Zhi Neng Zu Qiu 2: Shijie Dasai Pian"], "top_ids": [12279, 43979, 47612]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Charlotte", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4894.0, "error": null, "top_titles": ["Charlotte", "Charlotte: Tsuyoimono-tachi", "Charlotte Special", "Strong People", "Wakakusa no Charlotte", "Charlotte of the Young Grass", "Charlotte the Young Shoot"], "top_ids": ["10103", "11365", "2851"]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "모브 사이코 100", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 2224.6, "error": null, "top_titles": ["Zom 100: Zombie ni Naru made ni Shitai 100 no Koto", "Zom 100: Zombie ni Naru made ni Shitai 100 no Koto Recap", "100%"], "top_ids": [54112, 56605, 7374]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "我们仍未知道那天所看见的花的名字。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5451.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "charlotte", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2442.1, "error": null, "top_titles": ["Charlotte", "Charlotte: Tsuyoimono-tachi", "Charlotte Special", "Strong People", "Wakakusa no Charlotte", "Charlotte of the Young Grass", "Charlotte the Young Shoot"], "top_ids": ["10103", "11365", "2851"]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Mob Psycho 100 II", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2860.2, "error": null, "top_titles": ["Mob Psycho 100 II", "Kakyuusei 2: Hitomi no Naka no Shoujo-tachi", "Mob Psycho 100 III"], "top_ids": [37510, 510, 50172]} +{"sample_index": 63, "mal_id": 2001, "popularity": 66, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "gurren lagann", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9859.5, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "オーバーロード", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2838.2, "error": null, "top_titles": ["Overlord", "Overlord Movie 2: Shikkoku no Eiyuu", "Gekijouban Overlord 2", "Overlord Movie 2", "Overlord Movie 1: Fushisha no Ou", "Overlord Movie", "Gekijouban Overlord"], "top_ids": ["9965", "12915", "12584"]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "我們仍未知道那天所看見的花的名字。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3345.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "盾の勇者の成り上がり", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12188.1, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "盾の勇者の成り上がり", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2373.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "おーばーろーど", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 2439.0, "error": null, "top_titles": ["Wooser no Sono Higurashi", "Project Wooser", "Wooser no Sono Higurashi: Kakusei-hen", "Wooser no Sono Higurashi Second Season", "Wooser no Sono Higurashi 2", "Wooser no Sono Higurashi: Mugen-hen", "Wooser no Sono Higurashi Third Season", "Wooser no Sono Higurashi 3"], "top_ids": ["7238", "7979", "10138"]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "我們仍未知道那天所看見的花名。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2802.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "盾之勇者成名录", "hit": true, "position": 1, "kind": "id", "n_returned": 5, "duration_ms": 3410.5, "error": null, "top_titles": ["Tate no Yuusha no Nariagari Season 5", "盾の勇者の成り上がり Season 5", "The Rising of the Shield Hero Season 5", "Tate no Yuusha no Nariagari", "盾の勇者の成り上がり", "The Rising of the Shield Hero", "Tate no Yuusha no Nariagari Season 2", "Tate no Yuusha no Nariagari 2nd Season"], "top_ids": [62564, 35790, 40356]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "OVERLORD", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2325.8, "error": null, "top_titles": ["Overlord", "Overlord II", "Overlord III"], "top_ids": ["9965", "13237", "41174"]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "盾之勇者成名录", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3910.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "我们仍未知道那天所看见的花名。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3382.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "mob psycho 100 ii", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4055.3, "error": null, "top_titles": ["Mob Psycho 100 II", "Kakyuusei 2: Hitomi no Naka no Shoujo-tachi", "Mob Psycho 100 III"], "top_ids": [37510, 510, 50172]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2998.9, "error": null, "top_titles": ["Overlord", "Overlord II", "Overlord III"], "top_ids": ["9965", "13237", "41174"]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "盾之勇者成名錄", "hit": true, "position": 1, "kind": "id", "n_returned": 5, "duration_ms": 3855.5, "error": null, "top_titles": ["Tate no Yuusha no Nariagari Season 5", "盾の勇者の成り上がり Season 5", "The Rising of the Shield Hero Season 5", "Tate no Yuusha no Nariagari", "盾の勇者の成り上がり", "The Rising of the Shield Hero", "Tate no Yuusha no Nariagari Season 2", "Tate no Yuusha no Nariagari 2nd Season"], "top_ids": [62564, 35790, 40356]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "盾之勇者成名錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2165.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "我們仍未知道那天所看見的花名。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3417.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "盾之勇者成名錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3513.6, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "我们仍未知道那天所看见的花名。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2209.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "あの日見た花の名前を僕達はまだ知らない。", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4991.5, "error": null, "top_titles": ["Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.: Menma e no Tegami", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie"], "top_ids": [9989, 38963, 15039]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "OVERLORD", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5760.0, "error": null, "top_titles": ["Overlord", "Overlord II", "Overlord III"], "top_ids": ["9965", "13237", "41174"]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "아노하나", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2486.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "盾之勇者成名錄", "hit": true, "position": 1, "kind": "id", "n_returned": 5, "duration_ms": 6374.2, "error": null, "top_titles": ["Tate no Yuusha no Nariagari Season 5", "盾の勇者の成り上がり Season 5", "The Rising of the Shield Hero Season 5", "Tate no Yuusha no Nariagari", "盾の勇者の成り上がり", "The Rising of the Shield Hero", "Tate no Yuusha no Nariagari Season 2", "Tate no Yuusha no Nariagari 2nd Season"], "top_ids": [62564, 35790, 40356]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "我们仍未知道那天所看见的花的名字。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3793.3, "error": null, "top_titles": ["Quefa Mingzi de Changsuo", "Wo Men de Dong Ao", "Wo Men de Jia Yuan"], "top_ids": [52493, 51877, 45866]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Anohana: The Flower We Saw That Day", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2421.8, "error": null, "top_titles": ["Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", "Anohana: The Flower We Saw That Day", "あの日見た花の名前を僕達はまだ知らない。", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", "Anohana the Movie: The Flower We Saw That Day", "劇場版 あの日見た花の名前を僕達はまだ知らない。"], "top_ids": [9989, 15039]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "盾之勇者成名录", "hit": true, "position": 1, "kind": "id", "n_returned": 5, "duration_ms": 2592.9, "error": null, "top_titles": ["Tate no Yuusha no Nariagari Season 5", "盾の勇者の成り上がり Season 5", "The Rising of the Shield Hero Season 5", "Tate no Yuusha no Nariagari", "盾の勇者の成り上がり", "The Rising of the Shield Hero", "Tate no Yuusha no Nariagari Season 2", "Tate no Yuusha no Nariagari 2nd Season"], "top_ids": [62564, 35790, 40356]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5328.7, "error": null, "top_titles": ["Overlord", "Overlord II", "Overlord III"], "top_ids": ["9965", "13237", "41174"]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "anohana the flower we saw that day", "hit": true, "position": 1, "kind": "id", "n_returned": 2, "duration_ms": 2599.2, "error": null, "top_titles": ["Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", "Anohana the Movie: The Flower We Saw That Day", "劇場版 あの日見た花の名前を僕達はまだ知らない。", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", "Anohana: The Flower We Saw That Day", "あの日見た花の名前を僕達はまだ知らない。"], "top_ids": [15039, 9989]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "盾之勇者成名錄", "hit": true, "position": 1, "kind": "id", "n_returned": 5, "duration_ms": 4290.7, "error": null, "top_titles": ["Tate no Yuusha no Nariagari Season 5", "盾の勇者の成り上がり Season 5", "The Rising of the Shield Hero Season 5", "Tate no Yuusha no Nariagari", "盾の勇者の成り上がり", "The Rising of the Shield Hero", "Tate no Yuusha no Nariagari Season 2", "Tate no Yuusha no Nariagari 2nd Season"], "top_ids": [62564, 35790, 40356]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "はたらく魔王さま!", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2221.8, "error": null, "top_titles": ["Hataraku Maou-sama!", "The Devil is a Part-Timer!", "はたらく魔王さま!", "Hataraku Maou-sama!!", "The Devil is a Part-Timer! Season 2", "はたらく魔王さま!!", "Hataraku Maou-sama!! 2nd Season", "The Devil is a Part-Timer! Season 2 Part 2"], "top_ids": [15809, 130592, 155168]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "我們仍未知道那天所看見的花的名字。", "hit": true, "position": 5, "kind": "title_exact", "n_returned": 10, "duration_ms": 6262.7, "error": null, "top_titles": ["Quefa Mingzi de Changsuo", "Wo de Tian Jie Nu You", "Wo de Ni Tian Shen Qi"], "top_ids": [52493, 36455, 37564]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "盾之勇者成名录", "hit": true, "position": 1, "kind": "id", "n_returned": 5, "duration_ms": 2373.0, "error": null, "top_titles": ["Tate no Yuusha no Nariagari Season 5", "盾の勇者の成り上がり Season 5", "The Rising of the Shield Hero Season 5", "Tate no Yuusha no Nariagari", "盾の勇者の成り上がり", "The Rising of the Shield Hero", "Tate no Yuusha no Nariagari Season 2", "Tate no Yuusha no Nariagari 2nd Season"], "top_ids": [62564, 35790, 40356]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "방패 용사 성공담", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12641.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "OVERLORD", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5973.4, "error": null, "top_titles": ["Overlord", "Overlord II", "Overlord III"], "top_ids": ["9965", "13237", "41174"]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "打工吧!魔王大人", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3522.2, "error": null, "top_titles": ["Hataraku Maou-sama!", "The Devil is a Part-Timer!", "はたらく魔王さま!", "Hataraku Maou-sama!!", "The Devil is a Part-Timer! Season 2", "はたらく魔王さま!!"], "top_ids": [15809, 130592]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "我們仍未知道那天所看見的花名。", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3768.3, "error": null, "top_titles": ["Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.: Menma e no Tegami"], "top_ids": [9989, 15039, 38963]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2739.4, "error": null, "top_titles": ["Overlord", "Overlord II", "Overlord III"], "top_ids": ["9965", "13237", "41174"]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "我们仍未知道那天所看见的花名。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2553.3, "error": null, "top_titles": ["Wo Zhidao", "Wo Men de Dong Ao", "Wo Men de Jia Yuan"], "top_ids": [43222, 51877, 45866]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "방패 용사 성공담", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4866.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "The Rising of the Shield Hero", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4435.3, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "오버로드", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3004.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "我們仍未知道那天所看見的花名。", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2155.7, "error": null, "top_titles": ["Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.: Menma e no Tegami"], "top_ids": [9989, 15039, 38963]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "我们仍未知道那天所看见的花名。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3513.0, "error": null, "top_titles": ["Wo Zhidao", "Wo Men de Dong Ao", "Wo Men de Jia Yuan"], "top_ids": [43222, 51877, 45866]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Overlord", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5515.6, "error": null, "top_titles": ["Overlord", "Overlord II", "Overlord III"], "top_ids": ["9965", "13237", "41174"]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "打工吧!魔王大人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12238.7, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "The Rising of the Shield Hero", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 9545.1, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "盾の勇者の成り上がり", "The Rising of the Shield Hero", "Tate no Yuusha no Nariagari Season 3", "Tate no Yuusha no Nariagari 3rd Season", "The Rising of the Shield Hero 3rd Season", "Tate no Yuusha no Nariagari Season 4", "Tate no Yuusha no Nariagari 4th Season"], "top_ids": [35790, 40357, 57907]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3325.7, "error": null, "top_titles": ["Overlord", "Overlord II", "Overlord III"], "top_ids": ["9965", "13237", "41174"]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "打工吧!魔王大人", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2311.7, "error": null, "top_titles": ["Hataraku Maou-sama!", "The Devil is a Part-Timer!", "はたらく魔王さま!", "Hataraku Maou-sama!!", "The Devil is a Part-Timer! Season 2", "はたらく魔王さま!!"], "top_ids": [15809, 130592]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "サイコパス", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3192.6, "error": null, "top_titles": ["Psycho-Pass", "Psychopath", "Psycho-Pass SS Case 3: Onshuu no Kanata ni", "Psycho-Pass: Sinners of the System - Onshuu no Kanata ni", "Psycho-Pass SS Case 2: First Guardian", "Psycho-Pass: Sinners of the System - First Guardian"], "top_ids": ["7000", "41029", "41028"]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "알바 뛰는 마왕님!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7887.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "아노하나", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14090.1, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "the rising of the shield hero", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6214.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "さいこぱす", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6494.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "The Devil is a Part-Timer!", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 3805.5, "error": null, "top_titles": ["Hataraku Maou-sama!", "The Devil is a Part-Timer!", "はたらく魔王さま!", "Hataraku Maou-sama!!", "The Devil is a Part-Timer! Season 2", "はたらく魔王さま!!", "Hataraku Maou-sama!! 2nd Season", "The Devil is a Part-Timer! Season 2 Part 2"], "top_ids": [15809, 130592, 155168]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Anohana: The Flower We Saw That Day", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4054.1, "error": null, "top_titles": ["Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", "Shinshaku Sengoku Eiyuu Densetsu: Sanada Juu Yuushi", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie"], "top_ids": [9989, 989, 15039]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "PSYCHO-PASS心靈判官", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3329.4, "error": null, "top_titles": ["Psycho-Pass", "Psychopath", "Psycho-Pass 2", "Psycho-Pass Second Season", "Psychopath 2nd Season", "Psycho-Pass Movie", "Psychopath Movie"], "top_ids": ["7000", "7863", "7986"]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "Charlotte(シャーロット)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6943.0, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "anohana the flower we saw that day", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3463.0, "error": null, "top_titles": ["Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", "Shinshaku Sengoku Eiyuu Densetsu: Sanada Juu Yuushi"], "top_ids": [15039, 9989, 989]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "はたらく魔王さま!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2123.7, "error": null, "top_titles": ["Hataraku Maou-sama!", "Hataraku Maou-sama!! 2nd Season", "Hataraku Maou-sama!! Recap"], "top_ids": [15809, 53200, 55878]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "PSYCHO-PASS心灵判官", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6689.0, "error": null, "top_titles": ["Psycho-Pass", "Psychopath", "Psycho-Pass 2", "Psycho-Pass Second Season", "Psychopath 2nd Season", "Psycho-Pass Movie", "Psychopath Movie"], "top_ids": ["7000", "7863", "7986"]} +{"sample_index": 64, "mal_id": 35790, "popularity": 67, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "the rising of the shield hero", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 16010.2, "error": null, "top_titles": ["Tate no Yuusha no Nariagari", "盾の勇者の成り上がり", "The Rising of the Shield Hero", "Tate no Yuusha no Nariagari Season 3", "Tate no Yuusha no Nariagari 3rd Season", "The Rising of the Shield Hero 3rd Season", "Tate no Yuusha no Nariagari Season 4", "Tate no Yuusha no Nariagari 4th Season"], "top_ids": [35790, 40357, 57907]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "the devil is a part timer", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 2994.3, "error": null, "top_titles": ["Hataraku Maou-sama!", "The Devil is a Part-Timer!", "はたらく魔王さま!", "Hataraku Maou-sama!!", "The Devil is a Part-Timer! Season 2", "はたらく魔王さま!!", "Hataraku Maou-sama!! 2nd Season", "The Devil is a Part-Timer! Season 2 Part 2"], "top_ids": [15809, 130592, 155168]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "この素晴らしい世界に祝福を! 2", "hit": true, "position": 1, "kind": "id", "n_returned": 2, "duration_ms": 1231.1, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "KONOSUBA -God's blessing on this wonderful world! 2: God's Blessings on These Wonderful Works of Art!", "この素晴らしい世界に祝福を! 2 この素晴らしい芸術に祝福を!", "Kono Subarashii Sekai ni Shukufuku wo! 2", "KONOSUBA -God's blessing on this wonderful world! 2", "この素晴らしい世界に祝福を!2"], "top_ids": [97996, 21699]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "Charlotte(しゃーろっと)", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7774.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "打工吧!魔王大人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5921.4, "error": null, "top_titles": ["Xiao Rui Yu Da Mowang: Da Mowang De Yinmou", "Shijou Saikyou no Daimaou, Murabito A ni Tensei suru", "Xiao Rui Yu Da Mowang: Shenqi de Mo Pan"], "top_ids": [45413, 48415, 45412]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "为美好的世界献上祝福!2", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 4626.8, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2", "KONOSUBA -God's blessing on this wonderful world! 2", "この素晴らしい世界に祝福を!2"], "top_ids": [21699]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "爲美好的世界獻上祝福!2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 25227.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "Charlotte(シャーロット)", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 38244.1, "error": null, "top_titles": ["Charlotte", "Charlotte(シャーロット)", "Aniplex", "Charlotte: Tsuyoimono-tachi", "Charlotte Special", "Strong People", "Zhuanyan (2018 Zizhuan Zuizhong Zhang)", "轉眼 2018 Final Chapter"], "top_ids": [28999, 31553, 63191]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "이 멋진 세계에 축복을!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2320.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "打工吧!魔王大人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 37553.7, "error": null, "top_titles": ["Xiao Rui Yu Da Mowang: Da Mowang De Yinmou", "Shijou Saikyou no Daimaou, Murabito A ni Tensei suru", "Xiao Rui Yu Da Mowang: Shenqi de Mo Pan"], "top_ids": [45413, 48415, 45412]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "KonoSuba: God's Blessing on This Wonderful World! 2", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2593.3, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2", "KONOSUBA -God's blessing on this wonderful world! 2", "この素晴らしい世界に祝福を!2", "Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "KONOSUBA -God's blessing on this wonderful world! 2: God's Blessings on These Wonderful Works of Art!", "この素晴らしい世界に祝福を! 2 この素晴らしい芸術に祝福を!"], "top_ids": [21699, 97996]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "Charlotte(しゃーろっと)", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 4251.1, "error": null, "top_titles": ["Charlotte: Tsuyoimono-tachi", "Charlotte Special", "Strong People", "Charlotte", "Charlotte(シャーロット)", "Aniplex", "Zhuanyan (2018 Zizhuan Zuizhong Zhang)", "轉眼 2018 Final Chapter"], "top_ids": [31553, 28999, 63191]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "打工吧!魔王大人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 1946.5, "error": null, "top_titles": ["Xiao Rui Yu Da Mowang: Da Mowang De Yinmou", "Shijou Saikyou no Daimaou, Murabito A ni Tensei suru", "Xiao Rui Yu Da Mowang: Shenqi de Mo Pan"], "top_ids": [45413, 48415, 45412]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "夏洛特", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3220.9, "error": null, "top_titles": ["Natsu", "夏", "Victor Entertainment", "Hanaikada", "Hanaikada feat. Kase", "花筏 (feat. 夏背)", "Hikaru ga Shinda Natsu 2nd Season", "Hikanatsu"], "top_ids": [54242, 63975, 62584]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "konosuba god s blessing on this wonderful world 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4195.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "알바 뛰는 마왕님!", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 4333.1, "error": null, "top_titles": ["Mawangnim-eun Juggo Sip-eo"], "top_ids": [54880]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ダンジョンに出会いを求めるのは間違っているだろうか", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 1768.9, "error": null, "top_titles": ["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", "Is It Wrong to Try to Pick Up Girls in a Dungeon?", "ダンジョンに出会いを求めるのは間違っているだろうか", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", "ダンジョンに出会いを求めるのは間違っているだろうかⅡ", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", "Is It Wrong to Try to Pick Up Girls in a Dungeon? III"], "top_ids": [20920, 101167, 112124]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "夏洛特", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 45935.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "The Devil is a Part-Timer!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2211.6, "error": null, "top_titles": ["Hataraku Maou-sama!", "Chiichai! Maou-sama!!", "Hataraku Maou-sama!! 2nd Season"], "top_ids": [15809, 52970, 53200]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "在地下城寻求邂逅是否搞错了什么", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2311.7, "error": null, "top_titles": ["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", "Is It Wrong to Try to Pick Up Girls in a Dungeon?", "ダンジョンに出会いを求めるのは間違っているだろうか"], "top_ids": [20920]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "PSYCHO-PASS心靈判官", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 52107.9, "error": null, "top_titles": ["Psycho-Pass", "Psychopath", "Psycho-Pass 2", "Psycho-Pass Second Season", "Psychopath 2nd Season", "Psycho-Pass Movie", "Psychopath Movie"], "top_ids": ["7000", "7863", "7986"]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "샤를로트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2736.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "샤를로트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6567.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "在地下城尋求邂逅是否搞錯了什麼", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2462.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "在地下城尋求邂逅是否搞錯了什麼", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1706.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Charlotte", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 3329.2, "error": null, "top_titles": ["Charlotte", "Charlotte(シャーロット)", "Aniplex", "Charlotte: Tsuyoimono-tachi", "Charlotte Special", "Strong People", "Wakakusa no Charlotte", "Charlotte of the Young Grass"], "top_ids": [28999, 31553, 3196]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "PSYCHO-PASS心灵判官", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5759.6, "error": null, "top_titles": ["Psycho-Pass", "Psychopath", "Psycho-Pass 2", "Psycho-Pass Second Season", "Psychopath 2nd Season", "Psycho-Pass Movie", "Psychopath Movie"], "top_ids": ["7000", "7863", "7986"]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Charlotte", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 5520.9, "error": null, "top_titles": ["Charlotte", "Yoshiyuki Asai", "Jun Maeda", "Eiji Okabe", "Shunichi Yukimuro"], "top_ids": ["16649", "2107"]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "charlotte", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 2310.8, "error": null, "top_titles": ["Charlotte", "Charlotte(シャーロット)", "Aniplex", "Charlotte: Tsuyoimono-tachi", "Charlotte Special", "Strong People", "Wakakusa no Charlotte", "Charlotte of the Young Grass"], "top_ids": [28999, 31553, 3196]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "the devil is a part timer", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 5615.5, "error": null, "top_titles": ["Chiichai! Maou-sama!!", "Hataraku Maou-sama!! 2nd Season", "Hataraku Maou-sama!! Recap"], "top_ids": [52970, 53200, 55878]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "사이코패스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3105.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "在地下城寻求邂逅是否搞错了什么", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 5893.5, "error": null, "top_titles": ["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", "Is It Wrong to Try to Pick Up Girls in a Dungeon?", "ダンジョンに出会いを求めるのは間違っているだろうか"], "top_ids": [20920]} +{"sample_index": 65, "mal_id": 28999, "popularity": 68, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "charlotte", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 3616.1, "error": null, "top_titles": ["Charlotte", "Yoshiyuki Asai", "Jun Maeda", "Eiji Okabe", "Shunichi Yukimuro"], "top_ids": ["16649", "2107"]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "オーバーロード", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5983.8, "error": null, "top_titles": ["Overlord", "オーバーロード", "AT-X", "Overlord II", "オーバーロードⅡ", "Overlord III", "オーバーロードⅢ"], "top_ids": [29803, 35073, 37675]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Psycho-Pass", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4494.4, "error": null, "top_titles": ["Psycho-Pass", "Psychopath", "Psycho-Pass 2", "Psycho-Pass Second Season", "Psychopath 2nd Season", "Psycho-Pass Movie", "Psychopath Movie"], "top_ids": ["7000", "7863", "7986"]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "psycho pass", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3173.2, "error": null, "top_titles": ["Psycho-Pass", "Psychopath", "Psycho-Pass 2", "Psycho-Pass Second Season", "Psychopath 2nd Season", "Psycho-Pass Movie", "Psychopath Movie"], "top_ids": ["7000", "7863", "7986"]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "この素晴らしい世界に祝福を! 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 11855.9, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2", "Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!"], "top_ids": [32937, 34626, 32380]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "オーバーロード", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 10082.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "食戟のソーマ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 9, "duration_ms": 3512.7, "error": null, "top_titles": ["Shokugeki no Souma", "Shokugeki no Soma", "Food Wars: Shokugeki no Soma", "Shokugeki no Souma OVA", "Shokugeki no Souma: Jump Festa 2015 Special", "Food Wars! Shokugeki no Soma OVA", "Shokugeki no Souma: Ni no Sara", "Shokugeki no Souma 2nd Season"], "top_ids": ["9967", "11353", "11612"]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "おーばーろーど", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2672.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "食戟之灵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2558.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "为美好的世界献上祝福!2", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 4584.2, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "Kono Subarashii Sekai ni Shukufuku wo! 2", "Kono Subarashii Sekai ni Shukufuku wo! 3"], "top_ids": [34626, 32937, 49458]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "食戟之靈", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2335.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "在地下城尋求邂逅是否搞錯了什麼", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 16104.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "爲美好的世界獻上祝福!2", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3145.8, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "Kono Subarashii Sekai ni Shukufuku wo! 2", "Kono Subarashii Sekai ni Shukufuku wo! 3"], "top_ids": [34626, 32937, 49458]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "在地下城寻求邂逅是否搞错了什么", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2687.6, "error": null, "top_titles": ["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", "Is It Wrong to Try to Pick Up Girls in a Dungeon?", "ダンジョンに出会いを求めるのは間違っているだろうか"], "top_ids": [20920]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "おーばーろーど", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 18308.2, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "이 멋진 세계에 축복을!", "hit": true, "position": 8, "kind": "title_exact", "n_returned": 10, "duration_ms": 2810.4, "error": null, "top_titles": ["Iyagi Yeohaeng", "Bollogi Iyagi", "Je Bul Chal-ssi Iyagi"], "top_ids": [48317, 7504, 8081]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "OVERLORD", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3458.4, "error": null, "top_titles": ["Overlord", "オーバーロード", "AT-X", "Overlord: Sei Oukoku-hen - Manner Movie", "Overlord: The Sacred Kingdom - Manner Movie", "劇場版 OVERLORD 聖王国編 - 上映の注意", "Overlord Movie 1: Fushisha no Ou", "Gekijouban Overlord"], "top_ids": [29803, 61345, 34161]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "OVERLORD", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 7, "duration_ms": 12985.5, "error": null, "top_titles": ["Overlord: The Sacred Kingdom", "Naoyuki Itō", "Kyosuke Takada", "Overlord IV", "Yukie Sugawara", "Overlord III"], "top_ids": ["28392", "24364", "21105"]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "KonoSuba: God's Blessing on This Wonderful World! 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5316.9, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2", "Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!"], "top_ids": [32937, 34626, 32380]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "食戟之靈", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12176.5, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5528.1, "error": null, "top_titles": ["Overlord", "オーバーロード", "AT-X", "Overlord: Sei Oukoku-hen - Manner Movie", "Overlord: The Sacred Kingdom - Manner Movie", "劇場版 OVERLORD 聖王国編 - 上映の注意", "Overlord Movie 1: Fushisha no Ou", "Gekijouban Overlord"], "top_ids": [29803, 61345, 34161]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "던전에서 만남을 추구하면 안 되는 걸까", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12183.3, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "konosuba god s blessing on this wonderful world 2", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3900.1, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "Kono Subarashii Sekai ni Shukufuku wo! 2", "Kono Subarashii Sekai ni Shukufuku wo! 3"], "top_ids": [34626, 32937, 49458]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "食戟之灵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3710.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_cn", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 7, "duration_ms": 6694.4, "error": null, "top_titles": ["Overlord: The Sacred Kingdom", "Naoyuki Itō", "Kyosuke Takada", "Overlord IV", "Yukie Sugawara", "Overlord III"], "top_ids": ["28392", "24364", "21105"]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2202.3, "error": null, "top_titles": ["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", "Is It Wrong to Try to Pick Up Girls in a Dungeon?", "ダンジョンに出会いを求めるのは間違っているだろうか", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen", "Is It Wrong To Try To Pick Up Girls in a Dungeon? V", "ダンジョンに出会いを求めるのは間違っているだろうかⅤ 豊穣の女神篇", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Meikyuu-hen", "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV"], "top_ids": [20920, 170732, 129196]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "食戟之靈", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2423.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "OVERLORD", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4106.9, "error": null, "top_titles": ["Overlord", "オーバーロード", "AT-X", "Overlord: Sei Oukoku-hen - Manner Movie", "Overlord: The Sacred Kingdom - Manner Movie", "劇場版 OVERLORD 聖王国編 - 上映の注意", "Overlord Movie 1: Fushisha no Ou", "Gekijouban Overlord"], "top_ids": [29803, 61345, 34161]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "食戟之灵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2072.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ダンジョンに出会いを求めるのは間違っているだろうか", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 4637.2, "error": null, "top_titles": ["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III"], "top_ids": [32801, 28121, 40454]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "OVERLORD", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 7, "duration_ms": 3254.8, "error": null, "top_titles": ["Overlord: The Sacred Kingdom", "Naoyuki Itō", "Kyosuke Takada", "Overlord IV", "Yukie Sugawara", "Overlord III"], "top_ids": ["28392", "24364", "21105"]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2847.4, "error": null, "top_titles": ["Overlord", "オーバーロード", "AT-X", "Overlord: Sei Oukoku-hen - Manner Movie", "Overlord: The Sacred Kingdom - Manner Movie", "劇場版 OVERLORD 聖王国編 - 上映の注意", "Overlord Movie 1: Fushisha no Ou", "Gekijouban Overlord"], "top_ids": [29803, 61345, 34161]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "is it wrong to try to pick up girls in a dungeon", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2679.9, "error": null, "top_titles": ["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", "Is It Wrong to Try to Pick Up Girls in a Dungeon?", "ダンジョンに出会いを求めるのは間違っているだろうか", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen", "Is It Wrong To Try To Pick Up Girls in a Dungeon? V", "ダンジョンに出会いを求めるのは間違っているだろうかⅤ 豊穣の女神篇", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Meikyuu-hen", "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV"], "top_ids": [20920, 170732, 129196]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "식극의 소마", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3248.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "転生したらスライムだった件", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 1246.2, "error": null, "top_titles": ["Tensei Shitara Slime Datta Ken", "That Time I Got Reincarnated as a Slime", "転生したらスライムだった件", "Tensei Shitara Slime Datta Ken OVA", "That Time I Got Reincarnated as a Slime OAD", "転生したらスライムだった件 OVA", "Tensei Shitara Slime Datta Ken: Tensura Nikki", "The Slime Diaries"], "top_ids": [101280, 106509, 116741]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 7, "duration_ms": 3842.6, "error": null, "top_titles": ["Overlord: The Sacred Kingdom", "Naoyuki Itō", "Kyosuke Takada", "Overlord IV", "Yukie Sugawara", "Overlord III"], "top_ids": ["28392", "24364", "21105"]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Food Wars! Shokugeki no Soma", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 3863.3, "error": null, "top_titles": ["Shokugeki no Souma", "Shokugeki no Soma", "Food Wars: Shokugeki no Soma", "Shokugeki no Souma: Ni no Sara", "Shokugeki no Souma 2nd Season", "Shokugeki no Soma 2", "Shokugeki no Souma: San no Sara", "Shokugeki no Souma 3rd Season"], "top_ids": ["9967", "11612", "13581"]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "关于我转生变成史莱姆这档事", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 5375.4, "error": null, "top_titles": ["Tensei Shitara Slime Datta Ken", "That Time I Got Reincarnated as a Slime", "転生したらスライムだった件", "Tensei Shitara Slime Datta Ken: Tensura Nikki", "The Slime Diaries", "転生したらスライムだった件 転スラ日記", "Tensei Shitara Slime Datta Ken 2nd Season Part 2", "That Time I Got Reincarnated as a Slime Season 2 Part 2"], "top_ids": [101280, 116741, 116742]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "關於我轉生變成史萊姆這檔事", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1857.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "OVERLORD", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 10154.6, "error": null, "top_titles": ["Overlord", "オーバーロード", "AT-X", "Overlord: Sei Oukoku-hen - Manner Movie", "Overlord: The Sacred Kingdom - Manner Movie", "劇場版 OVERLORD 聖王国編 - 上映の注意", "Overlord Movie 1: Fushisha no Ou", "Gekijouban Overlord"], "top_ids": [29803, 61345, 34161]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "在地下城寻求邂逅是否搞错了什么", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12278.8, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "전생했더니 슬라임이었던 건에 대하여", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1633.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "OVERLORD", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 7, "duration_ms": 8817.5, "error": null, "top_titles": ["Overlord: The Sacred Kingdom", "Naoyuki Itō", "Kyosuke Takada", "Overlord IV", "Yukie Sugawara", "Overlord III"], "top_ids": ["28392", "24364", "21105"]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2524.9, "error": null, "top_titles": ["Overlord", "オーバーロード", "AT-X", "Overlord: Sei Oukoku-hen - Manner Movie", "Overlord: The Sacred Kingdom - Manner Movie", "劇場版 OVERLORD 聖王国編 - 上映の注意", "Overlord Movie 1: Fushisha no Ou", "Gekijouban Overlord"], "top_ids": [29803, 61345, 34161]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "food wars shokugeki no soma", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 3606.6, "error": null, "top_titles": ["Shokugeki no Souma", "Shokugeki no Soma", "Food Wars: Shokugeki no Soma", "Shokugeki no Souma: Ni no Sara", "Shokugeki no Souma 2nd Season", "Shokugeki no Soma 2", "Shokugeki no Souma: San no Sara", "Shokugeki no Souma 3rd Season"], "top_ids": ["9967", "11612", "13581"]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "That Time I Got Reincarnated as a Slime", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2377.9, "error": null, "top_titles": ["Tensei Shitara Slime Datta Ken", "That Time I Got Reincarnated as a Slime", "転生したらスライムだった件", "Tensei Shitara Slime Datta Ken OVA", "That Time I Got Reincarnated as a Slime OAD", "転生したらスライムだった件 OVA", "Tensei Shitara Slime Datta Ken: Guren no Kizuna-hen", "That Time I Got Reincarnated as a Slime the Movie: Scarlet Bond"], "top_ids": [101280, 106509, 139498]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "在地下城尋求邂逅是否搞錯了什麼", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3322.6, "error": null, "top_titles": ["Chikajou no Mamono", "Dixia Cheng Yu Yongshi: Nizhuan Zhi Lun", "Dixia Cheng Yu Yongshi: Nizhuan Zhi Lun Episode 0"], "top_ids": [53794, 38416, 59412]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "zh_tw", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 7, "duration_ms": 4276.1, "error": null, "top_titles": ["Overlord: The Sacred Kingdom", "Naoyuki Itō", "Kyosuke Takada", "Overlord IV", "Yukie Sugawara", "Overlord III"], "top_ids": ["28392", "24364", "21105"]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "在地下城尋求邂逅是否搞錯了什麼", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3167.9, "error": null, "top_titles": ["Chikajou no Mamono", "Dixia Cheng Yu Yongshi: Nizhuan Zhi Lun", "Dixia Cheng Yu Yongshi: Nizhuan Zhi Lun Episode 0"], "top_ids": [53794, 38416, 59412]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "鬼滅の刃 遊郭編", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 4289.1, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba 2", "Demon Slayer: Kimetsu no Yaiba Season 2"], "top_ids": ["44081"]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "오버로드", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3871.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "that time i got reincarnated as a slime", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4359.7, "error": null, "top_titles": ["Tensei Shitara Slime Datta Ken", "That Time I Got Reincarnated as a Slime", "転生したらスライムだった件", "Tensei Shitara Slime Datta Ken OVA", "That Time I Got Reincarnated as a Slime OAD", "転生したらスライムだった件 OVA", "Tensei Shitara Slime Datta Ken: Guren no Kizuna-hen", "That Time I Got Reincarnated as a Slime the Movie: Scarlet Bond"], "top_ids": [101280, 106509, 139498]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "鬼灭之刃 游郭篇", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 3465.4, "error": null, "top_titles": ["Kimetsu no Yaiba", "Blade of Demon Destruction", "KnY"], "top_ids": ["41370"]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "오버로드", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9032.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "在地下城寻求邂逅是否搞错了什么", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4336.1, "error": null, "top_titles": ["Chikajou no Mamono", "Wuya Weisheme shi Hei de", "Dixia Cheng Yu Yongshi: Nizhuan Zhi Lun"], "top_ids": [53794, 43217, 38416]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ホリミヤ", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2339.8, "error": null, "top_titles": ["Horimiya", "ホリミヤ", "Horimiya: piece", "Horimiya: The Missing Pieces", "ホリミヤ -piece-"], "top_ids": [124080, 163132]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "鬼滅之刃 遊郭篇", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2610.1, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba 2", "Demon Slayer: Kimetsu no Yaiba Season 2"], "top_ids": ["44081"]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "ほりみや", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2539.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "在地下城尋求邂逅是否搞錯了什麼", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3685.8, "error": null, "top_titles": ["Chikajou no Mamono", "Dixia Cheng Yu Yongshi: Nizhuan Zhi Lun", "Dixia Cheng Yu Yongshi: Nizhuan Zhi Lun Episode 0"], "top_ids": [53794, 38416, 59412]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Overlord", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 7, "duration_ms": 6332.3, "error": null, "top_titles": ["Overlord: The Sacred Kingdom", "Naoyuki Itō", "Kyosuke Takada", "Overlord IV", "Yukie Sugawara", "Overlord III"], "top_ids": ["28392", "24364", "21105"]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Overlord", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4648.8, "error": null, "top_titles": ["Overlord", "オーバーロード", "AT-X", "Overlord: Sei Oukoku-hen - Manner Movie", "Overlord: The Sacred Kingdom - Manner Movie", "劇場版 OVERLORD 聖王国編 - 上映の注意", "Overlord Movie 1: Fushisha no Ou", "Gekijouban Overlord"], "top_ids": [29803, 61345, 34161]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "堀与宫村", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 1752.3, "error": null, "top_titles": ["Horimiya", "ホリミヤ"], "top_ids": [124080]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "鬼滅之刃 遊郭篇", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 4566.7, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba 2", "Demon Slayer: Kimetsu no Yaiba Season 2"], "top_ids": ["44081"]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "在地下城寻求邂逅是否搞错了什么", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2943.7, "error": null, "top_titles": ["Chikajou no Mamono", "Wuya Weisheme shi Hei de", "Dixia Cheng Yu Yongshi: Nizhuan Zhi Lun"], "top_ids": [53794, 43217, 38416]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2959.9, "error": null, "top_titles": ["Overlord", "オーバーロード", "AT-X", "Overlord: Sei Oukoku-hen - Manner Movie", "Overlord: The Sacred Kingdom - Manner Movie", "劇場版 OVERLORD 聖王国編 - 上映の注意", "Overlord Movie 1: Fushisha no Ou", "Gekijouban Overlord"], "top_ids": [29803, 61345, 34161]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "堀與宮村", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3020.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "던전에서 만남을 추구하면 안 되는 걸까", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2347.6, "error": null, "top_titles": ["Annyeong Jadoo", "Annyeong Totobi", "Pipilu Anquan Tegong Dui"], "top_ids": [35920, 36978, 47806]} +{"sample_index": 66, "mal_id": 29803, "popularity": 69, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "overlord", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 7, "duration_ms": 5173.2, "error": null, "top_titles": ["Overlord: The Sacred Kingdom", "Naoyuki Itō", "Kyosuke Takada", "Overlord IV", "Yukie Sugawara", "Overlord III"], "top_ids": ["28392", "24364", "21105"]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "호리미야", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1626.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "サイコパス", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3482.7, "error": null, "top_titles": ["Psycho-Pass", "Psychopath", "サイコパス", "Psycho-Pass 2", "Psycho-Pass Second Season", "Psychopath 2nd Season", "Psycho-Pass 3", "PSYCHO-PASS サイコパス 3"], "top_ids": [13601, 23281, 39491]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "鬼灭之刃 游郭篇", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 5068.1, "error": null, "top_titles": ["Kimetsu no Yaiba", "Blade of Demon Destruction", "KnY"], "top_ids": ["41370"]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "サイコパス", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2848.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3791.5, "error": null, "top_titles": ["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III OVA", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA"], "top_ids": [28121, 44983, 32801]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Horimiya", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 5438.4, "error": null, "top_titles": ["Horimiya", "ホリミヤ", "Hori-san to Miyamura-kun", "堀さんと宮村くん", "Horimiya: piece", "Horimiya: The Missing Pieces", "ホリミヤ -piece-"], "top_ids": [124080, 14753, 163132]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "en", "backend": "anilist", "variant": "enhance_romaji_to_katakana", "query": "ホリミヤ", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2601.2, "error": null, "top_titles": ["Horimiya", "ホリミヤ", "Horimiya: piece", "Horimiya: The Missing Pieces", "ホリミヤ -piece-"], "top_ids": [124080, 163132]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "さいこぱす", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7616.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "horimiya", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2879.7, "error": null, "top_titles": ["Horimiya", "ホリミヤ", "Hori-san to Miyamura-kun", "堀さんと宮村くん", "Horimiya: piece", "Horimiya: The Missing Pieces", "ホリミヤ -piece-"], "top_ids": [124080, 14753, 163132]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "鬼滅之刃 遊郭篇", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 9390.6, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba 2", "Demon Slayer: Kimetsu no Yaiba Season 2"], "top_ids": ["44081"]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "is it wrong to try to pick up girls in a dungeon", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 4124.8, "error": null, "top_titles": ["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III OVA", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II OVA"], "top_ids": [44983, 32801, 40453]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "転生したらスライムだった件", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 2614.7, "error": null, "top_titles": ["Tensei shitara Slime Datta Ken 2nd Season Part 2", "Tensei shitara Slime Datta Ken 2nd Season", "Tensei shitara Slime Datta Ken"], "top_ids": [41487, 39551, 37430]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "PSYCHO-PASS心靈判官", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4028.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "さいこぱす", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13243.7, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "鬼灭之刃 游郭篇", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 3805.6, "error": null, "top_titles": ["Kimetsu no Yaiba", "Blade of Demon Destruction", "KnY"], "top_ids": ["41370"]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "賭ケグルイ", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 6197.5, "error": null, "top_titles": ["Kakegurui", "賭ケグルイ", "Kakegurui Picture Drama", "Kakegurui ××", "Kakegurui xx", "賭ケグルイ××"], "top_ids": [98314, 107622, 100876]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "关于我转生变成史莱姆这档事", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4204.0, "error": null, "top_titles": ["He Wei Dao x Guan Yu Wo Zhuan Sheng Bian Cheng Shi Lai Mu Zhe Dang Shi", "Tensei Akujo no Kuro Rekishi OVA", "Guan Miao Shenmeshi"], "top_ids": [54050, 63266, 54018]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "귀멸의 칼날: 유곽 편", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 4172.4, "error": null, "top_titles": ["Wala! Pyeon-uijeom The Animation", "Welcome to Convenience Store!", "Your Letter PV", "Yeon-ui Pyeonji", "Yeon's Letters"], "top_ids": ["7584", "46433", "50391"]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "狂赌之渊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2951.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "PSYCHO-PASS心靈判官", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6454.6, "error": null, "top_titles": ["Psycho-Pass", "Psychopath", "サイコパス", "Psycho-Pass 2", "Psycho-Pass Second Season", "Psychopath 2nd Season", "Psycho-Pass 3", "PSYCHO-PASS サイコパス 3"], "top_ids": [13601, 23281, 39491]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2501.8, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba 2", "Demon Slayer: Kimetsu no Yaiba Season 2", "Kimetsu no Yaiba: Jougen Shuuketsu, Soshite Katanakaji no Sato e", "Kimetsu no Yaiba World Tour"], "top_ids": ["44081", "47122"]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "關於我轉生變成史萊姆這檔事", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3837.2, "error": null, "top_titles": ["He Wei Dao x Guan Yu Wo Zhuan Sheng Bian Cheng Shi Lai Mu Zhe Dang Shi", "Guanyu Ta De Gushi", "Jijia Yingxiong Movie: Wo Yu Wo Dengyu Wuxian Da"], "top_ids": [54050, 52655, 56144]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "狂賭之淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2931.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "PSYCHO-PASS心灵判官", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2703.1, "error": null, "top_titles": ["Psycho-Pass", "Psychopath", "サイコパス", "Psycho-Pass 2", "Psycho-Pass Second Season", "Psychopath 2nd Season", "Psycho-Pass 3", "PSYCHO-PASS サイコパス 3"], "top_ids": [13601, 23281, 39491]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "전생했더니 슬라임이었던 건에 대하여", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2026.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "狂賭之淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2394.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "That Time I Got Reincarnated as a Slime", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2476.8, "error": null, "top_titles": ["Tensei shitara Slime Datta Ken", "Tensei shitara Slime Datta Ken 2nd Season Part 2", "He Wei Dao x Guan Yu Wo Zhuan Sheng Bian Cheng Shi Lai Mu Zhe Dang Shi"], "top_ids": [37430, 41487, 54050]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "狂赌之渊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1211.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "demon slayer kimetsu no yaiba entertainment district arc", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2832.5, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "Kimetsu no Yaiba 2", "Demon Slayer: Kimetsu no Yaiba Season 2", "Kimetsu no Yaiba: Jougen Shuuketsu, Soshite Katanakaji no Sato e", "Kimetsu no Yaiba World Tour"], "top_ids": ["44081", "47122"]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "PSYCHO-PASS心靈判官", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13760.4, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "狂賭之淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2592.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "that time i got reincarnated as a slime", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3218.9, "error": null, "top_titles": ["Tensei shitara Slime Datta Ken", "Tensei shitara Slime Datta Ken 2nd Season Part 2", "He Wei Dao x Guan Yu Wo Zhuan Sheng Bian Cheng Shi Lai Mu Zhe Dang Shi"], "top_ids": [37430, 41487, 54050]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "モブサイコ100 II", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 5455.4, "error": null, "top_titles": ["Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho Hyaku", "Mob Psycho 100 III", "Mob Psycho 100 Season 3", "Mob Psycho 3rd Season"], "top_ids": ["41071", "45338"]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "狂赌之渊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5456.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ホリミヤ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2390.5, "error": null, "top_titles": ["Horimiya", "Horimiya: Piece"], "top_ids": [42897, 54856]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "PSYCHO-PASS心靈判官", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12246.0, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "もぶさいこ100 II", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 4558.2, "error": null, "top_titles": ["Sword Art Online II", "Phantom Bullet", "SAO II", "Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho Hyaku", "Overlord II"], "top_ids": ["8174", "41071", "13237"]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "灵能百分百", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2223.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "PSYCHO-PASS心灵判官", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4065.0, "error": null, "top_titles": ["Psycho-Pass", "Psychopath", "サイコパス", "Psycho-Pass 2", "Psycho-Pass Second Season", "Psychopath 2nd Season", "Psycho-Pass 3", "PSYCHO-PASS サイコパス 3"], "top_ids": [13601, 23281, 39491]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "카케구루이", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5870.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "靈能百分百", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2554.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "사이코패스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14207.6, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "사이코패스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2705.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Kakegurui", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 2305.0, "error": null, "top_titles": ["Kakegurui", "賭ケグルイ", "Kakegurui ××", "Kakegurui xx", "賭ケグルイ××", "Kakegurui Twin", "賭ケグルイ双"], "top_ids": [98314, 100876, 141351]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "路人超能100 II", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3281.4, "error": null, "top_titles": ["Sword Art Online II", "Phantom Bullet", "SAO II", "Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho Hyaku", "Overlord II"], "top_ids": ["8174", "41071", "13237"]} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Psycho-Pass", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3469.5, "error": null, "top_titles": ["Psycho-Pass", "Psychopath", "サイコパス", "Psycho-Pass 2", "Psycho-Pass Second Season", "Psychopath 2nd Season", "Psycho-Pass 3", "PSYCHO-PASS サイコパス 3"], "top_ids": [13601, 23281, 39491]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "ほりみや", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12227.1, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "en", "backend": "anilist", "variant": "enhance_romaji_to_katakana", "query": "カケグルイ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5530.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "psycho pass", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2624.7, "error": null, "top_titles": ["Psycho-Pass", "Psychopath", "サイコパス", "Psycho-Pass 2", "Psycho-Pass Second Season", "Psychopath 2nd Season", "Psycho-Pass 3", "PSYCHO-PASS サイコパス 3"], "top_ids": [13601, 23281, 39491]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "모브 사이코 100", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4743.7, "error": null, "top_titles": ["100-man no Inochi no Ue ni Ore wa Tatteiru", "I'm Standing on a Million Lives", "Ichigo 100%", "100-man no Inochi no Ue ni Ore wa Tatteiru 2nd Season", "I'm Standing on a Million Lives 2nd Season"], "top_ids": ["43367", "7662", "43883"]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "kakegurui", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 2344.4, "error": null, "top_titles": ["Kakegurui", "賭ケグルイ", "Kakegurui ××", "Kakegurui xx", "賭ケグルイ××", "Kakegurui Twin", "賭ケグルイ双"], "top_ids": [98314, 100876, 141351]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "食戟のソーマ", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2883.9, "error": null, "top_titles": ["Shokugeki no Souma", "Shokugeki no Soma", "Food Wars: Shokugeki no Soma", "Shokugeki no Souma OVA", "Shokugeki no Souma: Jump Festa 2015 Special", "Food Wars! Shokugeki no Soma OVA", "Shokugeki no Souma: Ni no Sara", "Shokugeki no Souma 2nd Season"], "top_ids": [28171, 31327, 32282]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Mob Psycho 100 II", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2832.7, "error": null, "top_titles": ["Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho Hyaku", "Mob Psycho 100 III", "Mob Psycho 100 Season 3", "Mob Psycho 3rd Season"], "top_ids": ["41071", "45338"]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "エルフェンリート", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2097.2, "error": null, "top_titles": ["Elfen Lied", "エルフェンリート", "Elfen Lied: Tooriame nite - Arui wa, Shoujo wa Ikani Shite Sono Shinjou ni Itatta ka?", "Elfen Lied: Just How Did the Young Girl Arrive at Those Feelings?", "エルフェンリート 通り雨にて 或いは、少女はいかにしてその心情に至ったか?(REGENSCHAUER)"], "top_ids": [226, 376]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "食戟之灵", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2686.1, "error": null, "top_titles": ["Shokugeki no Souma", "Shokugeki no Soma", "Food Wars: Shokugeki no Soma", "Shokugeki no Souma: Ni no Sara", "Shokugeki no Souma 2nd Season", "Shokugeki no Soma 2", "Shokugeki no Souma: San no Sara", "Shokugeki no Soma 3rd Season"], "top_ids": [28171, 32282, 35788]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "堀与宫村", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 8223.7, "error": null, "top_titles": ["Hori-san to Miyamura-kun", "Xi Yangyang Yu Hui Tailang: Yang Cun Shouhuzhe", "Afghanistan Paghman-mura no Monogatari: Boku no Mura ni Circus ga Kita"], "top_ids": [14753, 43999, 26137]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "食戟之靈", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2076.5, "error": null, "top_titles": ["Shokugeki no Souma", "Shokugeki no Soma", "Food Wars: Shokugeki no Soma", "Shokugeki no Souma: Ni no Sara", "Shokugeki no Souma 2nd Season", "Shokugeki no Soma 2", "Shokugeki no Souma: San no Sara", "Shokugeki no Soma 3rd Season"], "top_ids": [28171, 32282, 35788]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "えるふぇんりーと", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3973.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Psycho-Pass", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14616.9, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "堀與宮村", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2599.6, "error": null, "top_titles": ["Hori-san to Miyamura-kun", "Afghanistan Paghman-mura no Monogatari: Boku no Mura ni Circus ga Kita", "Leonardo Hakase to Kirin-mura no Nakama desho: Halloween Party da yo Kirin-mura!"], "top_ids": [14753, 26137, 41161]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "mob psycho 100 ii", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2925.3, "error": null, "top_titles": ["Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho Hyaku", "Mob Psycho 100 III", "Mob Psycho 100 Season 3", "Mob Psycho 3rd Season"], "top_ids": ["41071", "45338"]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "食戟之靈", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2250.2, "error": null, "top_titles": ["Shokugeki no Souma", "Shokugeki no Soma", "Food Wars: Shokugeki no Soma", "Shokugeki no Souma: Ni no Sara", "Shokugeki no Souma 2nd Season", "Shokugeki no Soma 2", "Shokugeki no Souma: San no Sara", "Shokugeki no Soma 3rd Season"], "top_ids": [28171, 32282, 35788]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "あの日見た花の名前を僕達はまだ知らない。", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 1890.0, "error": null, "top_titles": ["Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", "AnoHana", "We Still Don't Know the Name of the Flower We Saw That Day.", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", "AnoHana Movie", "We Still Don't Know the Name of the Flower We Saw That Day. Movie", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.: Menma e no Tegami"], "top_ids": ["5981", "7200", "43606"]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "호리미야", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2670.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "食戟之灵", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 1816.2, "error": null, "top_titles": ["Shokugeki no Souma", "Shokugeki no Soma", "Food Wars: Shokugeki no Soma", "Shokugeki no Souma: Ni no Sara", "Shokugeki no Souma 2nd Season", "Shokugeki no Soma 2", "Shokugeki no Souma: San no Sara", "Shokugeki no Soma 3rd Season"], "top_ids": [28171, 32282, 35788]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "엘펜리트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4411.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 67, "mal_id": 13601, "popularity": 70, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "psycho pass", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4810.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Horimiya", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 3, "duration_ms": 2212.0, "error": null, "top_titles": ["Hori-san to Miyamura-kun", "Horimiya", "Horimiya: Piece"], "top_ids": [14753, 42897, 54856]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "食戟之靈", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3415.9, "error": null, "top_titles": ["Shokugeki no Souma", "Shokugeki no Soma", "Food Wars: Shokugeki no Soma", "Shokugeki no Souma: Ni no Sara", "Shokugeki no Souma 2nd Season", "Shokugeki no Soma 2", "Shokugeki no Souma: San no Sara", "Shokugeki no Soma 3rd Season"], "top_ids": [28171, 32282, 35788]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "en", "backend": "shikimori", "variant": "enhance_romaji_to_katakana", "query": "ホリミヤ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2115.5, "error": null, "top_titles": ["Horimiya", "Horimiya: Piece"], "top_ids": [42897, 54856]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Elfen Lied", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3649.3, "error": null, "top_titles": ["Elfen Lied", "エルフェンリート", "Elfen Lied: Tooriame nite - Arui wa, Shoujo wa Ikani Shite Sono Shinjou ni Itatta ka?", "Elfen Lied: Just How Did the Young Girl Arrive at Those Feelings?", "エルフェンリート 通り雨にて 或いは、少女はいかにしてその心情に至ったか?(REGENSCHAUER)"], "top_ids": [226, 376]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "食戟之灵", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2138.9, "error": null, "top_titles": ["Shokugeki no Souma", "Shokugeki no Soma", "Food Wars: Shokugeki no Soma", "Shokugeki no Souma: Ni no Sara", "Shokugeki no Souma 2nd Season", "Shokugeki no Soma 2", "Shokugeki no Souma: San no Sara", "Shokugeki no Soma 3rd Season"], "top_ids": [28171, 32282, 35788]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "食戟のソーマ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4744.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "horimiya", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 3, "duration_ms": 3439.1, "error": null, "top_titles": ["Hori-san to Miyamura-kun", "Horimiya", "Horimiya: Piece"], "top_ids": [14753, 42897, 54856]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "식극의 소마", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2825.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "食戟之灵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2981.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "賭ケグルイ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 1413.6, "error": null, "top_titles": ["Kakegurui", "Kakegurui Picture Drama", "Kakegurui Twin"], "top_ids": [34933, 38939, 50339]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "elfen lied", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2761.8, "error": null, "top_titles": ["Elfen Lied", "エルフェンリート", "Elfen Lied: Tooriame nite - Arui wa, Shoujo wa Ikani Shite Sono Shinjou ni Itatta ka?", "Elfen Lied: Just How Did the Young Girl Arrive at Those Feelings?", "エルフェンリート 通り雨にて 或いは、少女はいかにしてその心情に至ったか?(REGENSCHAUER)"], "top_ids": [226, 376]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Food Wars! Shokugeki no Soma", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2958.0, "error": null, "top_titles": ["Shokugeki no Souma", "Shokugeki no Soma", "Food Wars: Shokugeki no Soma", "Shokugeki no Souma: Ni no Sara", "Shokugeki no Souma 2nd Season", "Shokugeki no Soma 2", "Shokugeki no Souma: San no Sara", "Shokugeki no Soma 3rd Season"], "top_ids": [28171, 32282, 35788]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "食戟之靈", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3448.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "我们仍未知道那天所看见的花的名字。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13251.8, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "食戟之靈", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3293.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "学園黙示録 HIGHSCHOOL OF THE DEAD", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 6244.8, "error": null, "top_titles": ["Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD", "High School of the Dead", "学園黙示録HIGHSCHOOL OF THE DEAD", "Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD - Drifters of the Dead", "High School of the Dead: Drifters of the Dead", "学園黙示録HIGHSCHOOL OF THE DEAD ドリフターズ・オブ・ザ・デッド"], "top_ids": [8074, 9515]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "我們仍未知道那天所看見的花的名字。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4725.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "food wars shokugeki no soma", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4380.4, "error": null, "top_titles": ["Shokugeki no Souma", "Shokugeki no Soma", "Food Wars: Shokugeki no Soma", "Shokugeki no Souma: Ni no Sara", "Shokugeki no Souma 2nd Season", "Shokugeki no Soma 2", "Shokugeki no Souma: San no Sara", "Shokugeki no Soma 3rd Season"], "top_ids": [28171, 32282, 35788]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ja", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "学园黙示录 HIGHSCHOOL OF THE DEAD", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3229.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "狂赌之渊", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 11343.9, "error": null, "top_titles": ["Xing Yuan Zhi Jing", "Wo Wei Ge Kuang: Xuanlu Chongqi", "Ma Xiaole Zhi Wanju Ye Fengkuang"], "top_ids": [51389, 42952, 44960]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "鬼滅の刃 遊郭編", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2800.7, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "鬼滅の刃 遊郭編", "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", "Kimetsu no Yaiba", "Blade of Demon Destruction", "鬼滅の刃", "Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編"], "top_ids": [47778, 38000, 62547]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "狂賭之淵", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2457.9, "error": null, "top_titles": ["Wo Wei Ge Kuang: Xuanlu Chongqi", "Ma Xiaole Zhi Wanju Ye Fengkuang", "Shi Zhi Ge: Hua Yu Yan De Kuangxiang Shi"], "top_ids": [42952, 44960, 42285]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "鬼灭之刃 游郭篇", "hit": true, "position": 8, "kind": "title_substring", "n_returned": 10, "duration_ms": 3169.1, "error": null, "top_titles": ["Oni", "The Demon", "鬼", "Kenki Virgo", "Sword Demon Virgo", "剣鬼バルゴ", "Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編"], "top_ids": [7171, 63026, 62547]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ja", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "學園黙示録 HIGHSCHOOL OF THE DEAD", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4473.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "식극의 소마", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 10443.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "学园默示录", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2333.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "鬼滅之刃 遊郭篇", "hit": true, "position": 4, "kind": "id", "n_returned": 10, "duration_ms": 3315.6, "error": null, "top_titles": ["Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編", "Demon Slayer: Kimetsu no Yaiba - The Movie 3: Infinity Castle", "Kimetsu no Yaiba Movie 2: Mugenjou-hen", "Demon Slayer: Kimetsu no Yaiba - The Movie 2: Infinity Castle", "Kimetsu no Yaiba", "Blade of Demon Destruction", "鬼滅の刃"], "top_ids": [62547, 62546, 38000]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "狂賭之淵", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5062.1, "error": null, "top_titles": ["Wo Wei Ge Kuang: Xuanlu Chongqi", "Ma Xiaole Zhi Wanju Ye Fengkuang", "Shi Zhi Ge: Hua Yu Yan De Kuangxiang Shi"], "top_ids": [42952, 44960, 42285]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "鬼滅之刃 遊郭篇", "hit": true, "position": 4, "kind": "id", "n_returned": 10, "duration_ms": 2102.4, "error": null, "top_titles": ["Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編", "Demon Slayer: Kimetsu no Yaiba - The Movie 3: Infinity Castle", "Kimetsu no Yaiba Movie 2: Mugenjou-hen", "Demon Slayer: Kimetsu no Yaiba - The Movie 2: Infinity Castle", "Kimetsu no Yaiba", "Blade of Demon Destruction", "鬼滅の刃"], "top_ids": [62547, 62546, 38000]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "我們仍未知道那天所看見的花名。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12180.2, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "狂赌之渊", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3375.4, "error": null, "top_titles": ["Xing Yuan Zhi Jing", "Wo Wei Ge Kuang: Xuanlu Chongqi", "Ma Xiaole Zhi Wanju Ye Fengkuang"], "top_ids": [51389, 42952, 44960]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "鬼灭之刃 游郭篇", "hit": true, "position": 8, "kind": "title_substring", "n_returned": 10, "duration_ms": 2395.8, "error": null, "top_titles": ["Oni", "The Demon", "鬼", "Kenki Virgo", "Sword Demon Virgo", "剣鬼バルゴ", "Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編"], "top_ids": [7171, 63026, 62547]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "我们仍未知道那天所看见的花名。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2880.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "狂賭之淵", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2386.5, "error": null, "top_titles": ["Wo Wei Ge Kuang: Xuanlu Chongqi", "Ma Xiaole Zhi Wanju Ye Fengkuang", "Shi Zhi Ge: Hua Yu Yan De Kuangxiang Shi"], "top_ids": [42952, 44960, 42285]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "學園默示錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7027.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "我們仍未知道那天所看見的花名。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2578.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "鬼滅之刃 遊郭篇", "hit": true, "position": 4, "kind": "id", "n_returned": 10, "duration_ms": 3312.1, "error": null, "top_titles": ["Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編", "Demon Slayer: Kimetsu no Yaiba - The Movie 3: Infinity Castle", "Kimetsu no Yaiba Movie 2: Mugenjou-hen", "Demon Slayer: Kimetsu no Yaiba - The Movie 2: Infinity Castle", "Kimetsu no Yaiba", "Blade of Demon Destruction", "鬼滅の刃"], "top_ids": [62547, 62546, 38000]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "學園默示錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1914.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Food Wars! Shokugeki no Soma", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 3, "duration_ms": 10482.6, "error": null, "top_titles": ["Food Wars! Shokugeki no Soma: The Fifth Plate", "Yoshitomo Yonetani", "Shōgo Yasukawa", "Food Wars! Shokugeki no Soma: The Fourth Plate", "Food Wars! Shokugeki no Soma"], "top_ids": ["23036", "22395", "16344"]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "我们仍未知道那天所看见的花名。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2928.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "鬼灭之刃 游郭篇", "hit": true, "position": 8, "kind": "title_substring", "n_returned": 10, "duration_ms": 3603.6, "error": null, "top_titles": ["Oni", "The Demon", "鬼", "Kenki Virgo", "Sword Demon Virgo", "剣鬼バルゴ", "Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編"], "top_ids": [7171, 63026, 62547]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "狂赌之渊", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5699.9, "error": null, "top_titles": ["Xing Yuan Zhi Jing", "Wo Wei Ge Kuang: Xuanlu Chongqi", "Ma Xiaole Zhi Wanju Ye Fengkuang"], "top_ids": [51389, 42952, 44960]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "아노하나", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2367.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "学园默示录", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6024.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "귀멸의 칼날: 유곽 편", "hit": false, "position": null, "kind": "", "n_returned": 6, "duration_ms": 2852.1, "error": null, "top_titles": ["Annyeong Jadoo: In-eogongju Pyeon", "Hello Jadoo Special", "Hello Jadoo: The Little Mermaid", "LG gram 360 x Julia Ryu: Shimcheong Dive", "LG gram 360 x 줄리아 류 : 심청전 Dive 편", "LG gram 360 x Dive from Shimchoengjun", "Wala! Pyeon-uijeom The Animation", "Welcome to Convenience Store!"], "top_ids": [48281, 56944, 17106]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Anohana: The Flower We Saw That Day", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 2553.1, "error": null, "top_titles": ["Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", "AnoHana", "We Still Don't Know the Name of the Flower We Saw That Day.", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", "AnoHana Movie", "We Still Don't Know the Name of the Flower We Saw That Day. Movie", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.: Menma e no Tegami"], "top_ids": ["5981", "7200", "43606"]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "學園默示錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2145.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "anohana the flower we saw that day", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 2436.7, "error": null, "top_titles": ["Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", "AnoHana", "We Still Don't Know the Name of the Flower We Saw That Day.", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", "AnoHana Movie", "We Still Don't Know the Name of the Flower We Saw That Day. Movie", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.: Menma e no Tegami"], "top_ids": ["5981", "7200", "43606"]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "学园默示录", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2132.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4154.1, "error": null, "top_titles": ["Kimetsu no Yaiba: Yuukaku-hen", "鬼滅の刃 遊郭編", "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", "Kimetsu no Yaiba", "Blade of Demon Destruction", "鬼滅の刃", "Kimetsu no Yaiba Movie: Mugen Ressha-hen", "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen"], "top_ids": [47778, 38000, 40456]} +{"sample_index": 68, "mal_id": 28171, "popularity": 71, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "food wars shokugeki no soma", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4798.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "학원묵시록", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1809.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "鬼滅の刃 遊郭編", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2500.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "High School of the Dead", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2803.4, "error": null, "top_titles": ["Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD", "High School of the Dead", "学園黙示録HIGHSCHOOL OF THE DEAD", "Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD - Drifters of the Dead", "High School of the Dead: Drifters of the Dead", "学園黙示録HIGHSCHOOL OF THE DEAD ドリフターズ・オブ・ザ・デッド"], "top_ids": [8074, 9515]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "카케구루이", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12189.3, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "鬼灭之刃 游郭篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3346.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "はたらく魔王さま!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 8642.8, "error": null, "top_titles": ["The Devil is a Part-Timer!", "The Devil is a Part-Timer! Season 2", "Hataraku Maou-sama! 2nd Season", "The Devil is a Part-Timer! 2nd Season", "Hataraku Maou-sama!! Recap"], "top_ids": ["7314", "44113", "47705"]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Kakegurui", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 3452.9, "error": null, "top_titles": ["Kakegurui", "Kakegurui Picture Drama", "Kakegurui Twin"], "top_ids": [34933, 38939, 50339]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "鬼滅之刃 遊郭篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3080.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "en", "backend": "shikimori", "variant": "enhance_romaji_to_katakana", "query": "カケグルイ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2407.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "打工吧!魔王大人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4532.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "鬼滅之刃 遊郭篇", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3511.7, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "demon slayer kimetsu no yaiba entertainment district arc", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12174.4, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "kakegurui", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 4310.0, "error": null, "top_titles": ["Kakegurui", "Kakegurui Picture Drama", "Kakegurui Twin"], "top_ids": [34933, 38939, 50339]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "打工吧!魔王大人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3221.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "high school of the dead", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 4214.6, "error": null, "top_titles": ["Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD", "High School of the Dead", "学園黙示録HIGHSCHOOL OF THE DEAD", "Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD - Drifters of the Dead", "High School of the Dead: Drifters of the Dead", "学園黙示録HIGHSCHOOL OF THE DEAD ドリフターズ・オブ・ザ・デッド"], "top_ids": [8074, 9515]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "귀멸의 칼날: 유곽 편", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4948.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "フェイト/ゼロ", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2318.9, "error": null, "top_titles": ["Fate/Zero", "Fate/Zero 2nd Season", "Fate/Zero Season 2", "Fate/Zero 2ndシーズン"], "top_ids": [10087, 11741]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "エルフェンリート", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2958.3, "error": null, "top_titles": ["Elfen Lied", "Elfen Lied: Tooriame nite Arui wa, Shoujo wa Ikani Shite Sono Shinjou ni Itatta ka? - Regenschauer"], "top_ids": [226, 376]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "打工吧!魔王大人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3032.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "えるふぇんりーと", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 1740.2, "error": null, "top_titles": ["Never Ending Story", "Fairy Ngoo", "Suisei no Gargantia: Puchitto Furikaerintia"], "top_ids": [59516, 39708, 31113]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "엘펜리트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6005.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "알바 뛰는 마왕님!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7819.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "モブサイコ100 II", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 11823.2, "error": null, "top_titles": ["Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho Hyaku", "Mob Psycho 100 III", "Mob Psycho 100 3rd Season", "Mob Psycho 100: Dai Ikkai Rei toka Soudansho Ian Ryokou - Kokoro Mitasu Iyashi no Tabi", "Mob Psycho 100 II: The First Spirits and Such Company Trip ~A Journey that Mends the Heart and Heals the Soul~", "モブサイコ100 第一回霊とか相談所慰安旅行~ココロ満たす癒やしの旅~"], "top_ids": [37510, 50172, 39651]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Elfen Lied", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 2786.9, "error": null, "top_titles": ["Elfen Lied", "Elfen Lied: Tooriame nite Arui wa, Shoujo wa Ikani Shite Sono Shinjou ni Itatta ka? - Regenschauer", "Daishikkin Helena"], "top_ids": [226, 376, 3250]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "もぶさいこ100 II", "hit": true, "position": 4, "kind": "title_substring", "n_returned": 10, "duration_ms": 2887.0, "error": null, "top_titles": ["Tamayura: More Aggressive", "たまゆら ~もあぐれっしぶ~", "RAY", "Tamayura: More Aggressive - Ichinichi dake no Shuugakuryokou, nanode", "Tamayura: More Aggressive OVA", "Tamayura: More Aggressive Episode 8.5", "Tamayura: More Aggressive Picture Drama", "たまゆら ~もあぐれっしぶ~ ピクチャードラマ『来年の夏、汐入で会おうね、なので』"], "top_ids": [15731, 21737, 25169]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "The Devil is a Part-Timer!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 3321.5, "error": null, "top_titles": ["The Devil is a Part-Timer!", "The Devil is a Part-Timer! Season 2", "Hataraku Maou-sama! 2nd Season", "The Devil is a Part-Timer! 2nd Season", "Hataraku Maou-sama!! 2nd Season", "The Devil is a Part-Timer! 3rd Season", "Hataraku Maou-sama 3"], "top_ids": ["7314", "44113", "46550"]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "ふぇいと/ぜろ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12282.9, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "灵能百分百", "hit": true, "position": 4, "kind": "title_substring", "n_returned": 10, "duration_ms": 3058.9, "error": null, "top_titles": ["Lingjing Xingzhe", "Ling Jing Xing Zhe", "灵境行者", "Di Ling Ai: Mo Shui Linglong", "缔灵爱之默水玲珑", "Divine Love: Deep Blue", "Ling Long Di Yi Ji Jing Bian Ban", "灵笼第一季精编版"], "top_ids": [62734, 62681, 61747]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "elfen lied", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 1753.4, "error": null, "top_titles": ["Elfen Lied", "Elfen Lied: Tooriame nite Arui wa, Shoujo wa Ikani Shite Sono Shinjou ni Itatta ka? - Regenschauer", "Daishikkin Helena"], "top_ids": [226, 376, 3250]} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 16604.3, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "靈能百分百", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2925.9, "error": null, "top_titles": ["Bai Gui Ri Xing", "百诡日行", "Phantom Hunter", "Bai Lian Cheng Shen 3", "Bai Lian Cheng Shen 3rd Season", "百炼成神 第三季", "Hyakujitsu no Bara", "百日の薔薇"], "top_ids": [62793, 62703, 5902]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "学園黙示録 HIGHSCHOOL OF THE DEAD", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3809.2, "error": null, "top_titles": ["Highschool of the Dead", "Highschool of the Dead: Drifters of the Dead", "Gakuen Shinshoku: XX of the Dead"], "top_ids": [8074, 9515, 34959]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "the devil is a part timer", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 4318.2, "error": null, "top_titles": ["The Devil is a Part-Timer!", "The Devil is a Part-Timer! Season 2", "Hataraku Maou-sama! 2nd Season", "The Devil is a Part-Timer! 2nd Season", "Hataraku Maou-sama!! 2nd Season", "The Devil is a Part-Timer! 3rd Season", "Hataraku Maou-sama 3"], "top_ids": ["7314", "44113", "46550"]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "学园黙示录 HIGHSCHOOL OF THE DEAD", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2413.2, "error": null, "top_titles": ["Highschool of the Dead", "Highschool of the Dead: Drifters of the Dead", "Gakuen Shinshoku: XX of the Dead"], "top_ids": [8074, 9515, 34959]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "路人超能100 II", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6067.8, "error": null, "top_titles": ["Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho Hyaku", "Mob Psycho 100: Dai Ikkai Rei toka Soudansho Ian Ryokou - Kokoro Mitasu Iyashi no Tabi", "Mob Psycho 100 II: The First Spirits and Such Company Trip ~A Journey that Mends the Heart and Heals the Soul~", "モブサイコ100 第一回霊とか相談所慰安旅行~ココロ満たす癒やしの旅~", "Mob Psycho 100 III", "Mob Psycho 100 3rd Season"], "top_ids": [37510, 39651, 50172]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "學園黙示録 HIGHSCHOOL OF THE DEAD", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3634.0, "error": null, "top_titles": ["Highschool of the Dead", "Highschool of the Dead: Drifters of the Dead", "Taiyou no Mokushiroku: A Spirit of the Sun"], "top_ids": [8074, 9515, 1857]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "命运之零", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12328.6, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "모브 사이코 100", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 5703.6, "error": null, "top_titles": ["100%", "A Hundred Percents", "Nippon Animation", "Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho Hyaku", "Mob Psycho 100 III", "Mob Psycho 100 3rd Season"], "top_ids": [7374, 37510, 50172]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "学园默示录", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 7498.2, "error": null, "top_titles": ["Mo Shi", "Mengxiang Xue Yuan", "AOTU Xueyuan"], "top_ids": [56769, 45315, 53685]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "この素晴らしい世界に祝福を! 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12285.2, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "命運之零", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9433.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Mob Psycho 100 II", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4973.8, "error": null, "top_titles": ["Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho Hyaku", "Mob Psycho 100: Dai Ikkai Rei toka Soudansho Ian Ryokou - Kokoro Mitasu Iyashi no Tabi", "Mob Psycho 100 II: The First Spirits and Such Company Trip ~A Journey that Mends the Heart and Heals the Soul~", "モブサイコ100 第一回霊とか相談所慰安旅行~ココロ満たす癒やしの旅~", "Mob Psycho 100 III", "Mob Psycho 100 3rd Season"], "top_ids": [37510, 39651, 50172]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "为美好的世界献上祝福!2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3005.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "命運/零話", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3587.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "mob psycho 100 ii", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4116.1, "error": null, "top_titles": ["Mob Psycho 100 II", "Mob Psycho 100 2nd Season", "Mob Psycho Hyaku", "Mob Psycho 100: Dai Ikkai Rei toka Soudansho Ian Ryokou - Kokoro Mitasu Iyashi no Tabi", "Mob Psycho 100 II: The First Spirits and Such Company Trip ~A Journey that Mends the Heart and Heals the Soul~", "モブサイコ100 第一回霊とか相談所慰安旅行~ココロ満たす癒やしの旅~", "Mob Psycho 100 III", "Mob Psycho 100 3rd Season"], "top_ids": [37510, 39651, 50172]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "爲美好的世界獻上祝福!2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4998.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "命运/零话", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3585.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 69, "mal_id": 47778, "popularity": 72, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "demon slayer kimetsu no yaiba entertainment district arc", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14477.8, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "あの日見た花の名前を僕達はまだ知らない。", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4780.4, "error": null, "top_titles": ["Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", "AnoHana", "We Still Don't Know the Name of the Flower We Saw That Day.", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", "AnoHana Movie", "We Still Don't Know the Name of the Flower We Saw That Day. Movie", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.: Menma e no Tegami", "AnoHana Picture Drama"], "top_ids": [9989, 15039, 38963]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "モブサイコ100 II", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4041.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "學園默示錄", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 17933.8, "error": null, "top_titles": ["Mo Shi", "Meikoku Gakuen: Jutai-hen", "Qishi Lu Wu Mai Zhi Cheng"], "top_ids": [56769, 34747, 52689]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "이 멋진 세계에 축복을!", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 6176.1, "error": null, "top_titles": ["I Byeol-e Pil-yohan"], "top_ids": ["49950"]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "我们仍未知道那天所看见的花的名字。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4653.8, "error": null, "top_titles": ["Rang Wo Men Shao Ba", "Rang Women Shao Ba", "Let Us Burn", "Wo Men de Dong Ao", "我们的冬奥", "Me And My Winter Games", "Wo Men de Jia Yuan", "Women de Jiayuan"], "top_ids": [37736, 51877, 45866]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "もぶさいこ100 II", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3599.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "學園默示錄", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 3197.9, "error": null, "top_titles": ["Mo Shi", "Meikoku Gakuen: Jutai-hen", "Qishi Lu Wu Mai Zhi Cheng"], "top_ids": [56769, 34747, 52689]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "KonoSuba: God's Blessing on This Wonderful World! 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3102.2, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2", "Give Blessings to This Wonderful World! 2", "Kono Subarashii Sekai ni Shukufuku wo! 2 OVA", "KonoSuba: God's Blessing on This Wonderful World! Second Season OVA", "Kono Subarashii Sekai ni Shukufuku wo! 3: -BONUS STAGE-", "KONOSUBA -God's blessing on this wonderful world! 3 OVA", "Kono Subarashii Sekai ni Shukufuku wo! 3 OVA"], "top_ids": ["11937", "13136", "49203"]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "我們仍未知道那天所看見的花的名字。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3093.9, "error": null, "top_titles": ["Onaji Semi no Someya-san ga Sexy Joyuu datta Hanashi.", "同じゼミの染谷さんがセクシー女優だった話。", "My Classmate's a Sexy Actress, and Now We Live Together?!", "Arisugawa Ren tte Honto wa Onna Nanda yo ne.", "有栖川煉ってホントは女なんだよね。", "Ren Arisugawa Is Actually a Girl", "Saijaku Tamer wa Gomi Hiroi no Tabi wo Hajimemashita. 2nd Season", "最弱テイマーはゴミ拾いの旅を始めました。 第2期"], "top_ids": [63619, 63096, 63078]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "페이트/제로", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12325.9, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "学园默示录", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2521.1, "error": null, "top_titles": ["Mo Shi", "Mengxiang Xue Yuan", "AOTU Xueyuan"], "top_ids": [56769, 45315, 53685]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "我們仍未知道那天所看見的花名。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2996.7, "error": null, "top_titles": ["Kimi no Na wa.", "君の名は。", "Your Name.", "Watashi no Na wa Outafukuko: Chiisana Shiawase wo, Chikyuu no Shiawase ni.", "わたしの名はオオタフクコ~小さな幸せを、地球の幸せに。~", "Borderless Happiness", "Onaji Semi no Someya-san ga Sexy Joyuu datta Hanashi.", "同じゼミの染谷さんがセクシー女優だった話。"], "top_ids": [32281, 38497, 63619]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Fate/Zero", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 3338.0, "error": null, "top_titles": ["Fate/Zero", "Fate/Zero Cafe", "Fate/ゼロカフェ", "Fate/Zero 2nd Season", "Fate/Zero Season 2", "Fate/Zero 2ndシーズン"], "top_ids": [10087, 19165, 11741]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "konosuba god s blessing on this wonderful world 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3799.6, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2", "Give Blessings to This Wonderful World! 2", "Kono Subarashii Sekai ni Shukufuku wo! 2 OVA", "KonoSuba: God's Blessing on This Wonderful World! Second Season OVA", "Kono Subarashii Sekai ni Shukufuku wo! 3: -BONUS STAGE-", "KONOSUBA -God's blessing on this wonderful world! 3 OVA", "Kono Subarashii Sekai ni Shukufuku wo! 3 OVA"], "top_ids": ["11937", "13136", "49203"]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "我们仍未知道那天所看见的花名。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3123.9, "error": null, "top_titles": ["Kimi no Na wa.", "君の名は。", "Your Name.", "Watashi no Na wa Outafukuko: Chiisana Shiawase wo, Chikyuu no Shiawase ni.", "わたしの名はオオタフクコ~小さな幸せを、地球の幸せに。~", "Borderless Happiness", "Rang Wo Men Shao Ba", "Rang Women Shao Ba"], "top_ids": [32281, 38497, 37736]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "學園默示錄", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 4167.1, "error": null, "top_titles": ["Mo Shi", "Meikoku Gakuen: Jutai-hen", "Qishi Lu Wu Mai Zhi Cheng"], "top_ids": [56769, 34747, 52689]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "灵能百分百", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8206.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ダンジョンに出会いを求めるのは間違っているだろうか", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2582.0, "error": null, "top_titles": ["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", "DanMachi", "Is It Wrong That I Want to Meet You in a Dungeon", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA", "DanMachi OVA", "Is It Wrong to Expect a Hot Spring in a Dungeon?", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II: Past & Future", "DanMachi Recap"], "top_ids": ["9962", "11851", "42441"]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "在地下城寻求邂逅是否搞错了什么", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2072.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "学园默示录", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2429.8, "error": null, "top_titles": ["Mo Shi", "Mengxiang Xue Yuan", "AOTU Xueyuan"], "top_ids": [56769, 45315, 53685]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "fate zero", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 2664.4, "error": null, "top_titles": ["Fate/Zero", "Fate/Zero Cafe", "Fate/ゼロカフェ", "Fate/Zero 2nd Season", "Fate/Zero Season 2", "Fate/Zero 2ndシーズン"], "top_ids": [10087, 19165, 11741]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "我們仍未知道那天所看見的花名。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3991.3, "error": null, "top_titles": ["Kimi no Na wa.", "君の名は。", "Your Name.", "Watashi no Na wa Outafukuko: Chiisana Shiawase wo, Chikyuu no Shiawase ni.", "わたしの名はオオタフクコ~小さな幸せを、地球の幸せに。~", "Borderless Happiness", "Onaji Semi no Someya-san ga Sexy Joyuu datta Hanashi.", "同じゼミの染谷さんがセクシー女優だった話。"], "top_ids": [32281, 38497, 63619]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "無職転生 ~異世界行ったら本気だす~", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 1734.5, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Mushoku Tensei: Jobless Reincarnation", "無職転生 ~異世界行ったら本気だす~", "Mushoku Tensei III: Isekai Ittara Honki Dasu", "Mushoku Tensei: Jobless Reincarnation Season 3", "無職転生Ⅲ ~異世界行ったら本気だす~", "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", "Mushoku Tensei: Jobless Reincarnation Cour 2"], "top_ids": [108465, 178789, 127720]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "학원묵시록", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2731.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "在地下城尋求邂逅是否搞錯了什麼", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3914.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "ja", "backend": "anilist", "variant": "enhance_jaconv_norm", "query": "無職転生 ー異世界行ったら本気だすー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2631.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "我们仍未知道那天所看见的花名。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2956.9, "error": null, "top_titles": ["Kimi no Na wa.", "君の名は。", "Your Name.", "Watashi no Na wa Outafukuko: Chiisana Shiawase wo, Chikyuu no Shiawase ni.", "わたしの名はオオタフクコ~小さな幸せを、地球の幸せに。~", "Borderless Happiness", "Rang Wo Men Shao Ba", "Rang Women Shao Ba"], "top_ids": [32281, 38497, 37736]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "路人超能100 II", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7244.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "在地下城尋求邂逅是否搞錯了什麼", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2170.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "无职转生:到了异世界就拿出真本事", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 3112.8, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Mushoku Tensei: Jobless Reincarnation", "無職転生 ~異世界行ったら本気だす~", "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", "無職転生Ⅱ ~異世界行ったら本気だす~ 第2クール", "Mushoku Tensei II: Isekai Ittara Honki Dasu", "Mushoku Tensei: Jobless Reincarnation Season 2"], "top_ids": [108465, 166873, 146065]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "모브 사이코 100", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3519.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "無職轉生:到了異世界就拿出真本事", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1983.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "High School of the Dead", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 8132.0, "error": null, "top_titles": ["Highschool of the Dead", "Highschool of the Dead: Drifters of the Dead", "The God of High School"], "top_ids": [8074, 9515, 41353]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "無職轉生~到了異世界就拿出真本事~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2404.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Mob Psycho 100 II", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 3, "duration_ms": 3609.6, "error": null, "top_titles": ["Mob Psycho 100 III", "Yuzuru Tachikawa", "Takahiro Hasui", "Mob Psycho 100 II", "Hiroshi Seko"], "top_ids": ["24878", "22493", "21204"]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "无职转生~到了异世界就拿出真本事~", "hit": true, "position": 2, "kind": "id", "n_returned": 3, "duration_ms": 3450.8, "error": null, "top_titles": ["Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", "無職転生Ⅱ ~異世界行ったら本気だす~ 第2クール", "Mushoku Tensei II: Isekai Ittara Honki Dasu", "Mushoku Tensei: Jobless Reincarnation Season 2", "無職転生Ⅱ ~異世界行ったら本気だす~", "Mushoku Tensei: Isekai Ittara Honki Dasu", "Mushoku Tensei: Jobless Reincarnation"], "top_ids": [166873, 146065, 108465]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "아노하나", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 11252.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "在地下城寻求邂逅是否搞错了什么", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12179.4, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "無職轉生,到了異世界就拿出真本事", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3743.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Anohana: The Flower We Saw That Day", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6086.4, "error": null, "top_titles": ["Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", "AnoHana", "We Still Don't Know the Name of the Flower We Saw That Day.", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", "AnoHana Movie", "We Still Don't Know the Name of the Flower We Saw That Day. Movie", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.: Menma e no Tegami", "AnoHana Picture Drama"], "top_ids": [9989, 15039, 38963]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "在地下城尋求邂逅是否搞錯了什麼", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4249.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "无职转生,到了异世界就拿出真本事", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 4038.2, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Mushoku Tensei: Jobless Reincarnation", "無職転生 ~異世界行ったら本気だす~", "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", "無職転生Ⅱ ~異世界行ったら本気だす~ 第2クール", "Mushoku Tensei II: Isekai Ittara Honki Dasu", "Mushoku Tensei: Jobless Reincarnation Season 2"], "top_ids": [108465, 166873, 146065]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "무직전생 ~이세계에 갔으면 최선을 다한다~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1680.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "anohana the flower we saw that day", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3796.9, "error": null, "top_titles": ["Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", "AnoHana", "We Still Don't Know the Name of the Flower We Saw That Day.", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", "AnoHana Movie", "We Still Don't Know the Name of the Flower We Saw That Day. Movie", "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.: Menma e no Tegami", "AnoHana Picture Drama"], "top_ids": [9989, 15039, 38963]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "在地下城寻求邂逅是否搞错了什么", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3898.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "high school of the dead", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12280.8, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "はたらく魔王さま!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3372.1, "error": null, "top_titles": ["Hataraku Maou-sama!", "はたらく魔王さま!", "The Devil is a Part-Timer!", "Hataraku Maou-sama!!", "The Devil is a Part-Timer! 2nd Season", "The Devil is a Part-Timer!!", "Hataraku Maou-sama!! 2nd Season", "The Devil is a Part-Timer! 3rd Season"], "top_ids": [15809, 48413, 53200]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "フェイト/ゼロ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2562.5, "error": null, "top_titles": ["Fate/Zero", "Fate/Zero 2nd Season", "Fate/Zero Remix"], "top_ids": [10087, 11741, 13183]} +{"sample_index": 70, "mal_id": 37510, "popularity": 73, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "mob psycho 100 ii", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 3, "duration_ms": 5691.8, "error": null, "top_titles": ["Mob Psycho 100 III", "Yuzuru Tachikawa", "Takahiro Hasui", "Mob Psycho 100 II", "Hiroshi Seko"], "top_ids": ["24878", "22493", "21204"]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "던전에서 만남을 추구하면 안 되는 걸까", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5628.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "打工吧!魔王大人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2940.1, "error": null, "top_titles": ["Qing Jiao Wo Gui Chai Daren", "请叫我诡差大人", "Call Me Lord Eerie Bailiff", "Bâan: Otona no Kyoukai", "Baan", "bâan - 大人の彊界", "Kaguya-sama wa Kokurasetai: Otona e no Kaidan", "かぐや様は告らせたい 大人への階段"], "top_ids": [62744, 61984, 61903]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "ふぇいと/ぜろ", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2960.4, "error": null, "top_titles": ["Itoshii Itoshii Itoshi no Pan-hen", "Issho ni Training Ofuro: Bathtime with Hinako & Hiyoko", "Shimajirou no Wow! Movie 8: Shimajirou to Soratobu Fune"], "top_ids": [59812, 9744, 40621]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "あの日見た花の名前を僕達はまだ知らない。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3596.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "命运之零", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2568.2, "error": null, "top_titles": ["Wangzhe Rongyao: Rongyao Zhi Zhang - Mingyun Pian", "Menghuan Xiyou", "Menghuan Xiyou: Tianming Zhi Zhan"], "top_ids": [61592, 33600, 44302]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4648.5, "error": null, "top_titles": ["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", "DanMachi", "Is It Wrong That I Want to Meet You in a Dungeon", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", "Danmachi II", "Danmachi Season 2", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", "Is It Wrong to Try to Pick Up Girls in a Dungeon? 3"], "top_ids": ["9962", "40599", "42583"]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "我们仍未知道那天所看见的花的名字。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3519.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "打工吧!魔王大人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5311.0, "error": null, "top_titles": ["Qing Jiao Wo Gui Chai Daren", "请叫我诡差大人", "Call Me Lord Eerie Bailiff", "Bâan: Otona no Kyoukai", "Baan", "bâan - 大人の彊界", "Kaguya-sama wa Kokurasetai: Otona e no Kaidan", "かぐや様は告らせたい 大人への階段"], "top_ids": [62744, 61984, 61903]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Mushoku Tensei: Jobless Reincarnation", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13150.1, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "命運之零", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4087.3, "error": null, "top_titles": ["Menghuan Xiyou", "Menghuan Xiyou: Tianming Zhi Zhan", "Modeng Senlin: Shengming Zhi Shui"], "top_ids": [33600, 44302, 44876]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "打工吧!魔王大人", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2447.0, "error": null, "top_titles": ["Qing Jiao Wo Gui Chai Daren", "请叫我诡差大人", "Call Me Lord Eerie Bailiff", "Bâan: Otona no Kyoukai", "Baan", "bâan - 大人の彊界", "Kaguya-sama wa Kokurasetai: Otona e no Kaidan", "かぐや様は告らせたい 大人への階段"], "top_ids": [62744, 61984, 61903]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "我們仍未知道那天所看見的花名。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2943.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "命運/零話", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2635.8, "error": null, "top_titles": ["Unmei", "Unmei no Saikoro", "Unmei Kyoudoutai!"], "top_ids": [49684, 52760, 55750]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "알바 뛰는 마왕님!", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 2682.7, "error": null, "top_titles": ["Mawangnim-eun Juggo Sip-eo", "The Demon Queen Has a Death Wish", "The Demon Queen Wants To Die"], "top_ids": [54880]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "is it wrong to try to pick up girls in a dungeon", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3376.3, "error": null, "top_titles": ["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", "DanMachi", "Is It Wrong That I Want to Meet You in a Dungeon", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", "Danmachi II", "Danmachi Season 2", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", "Is It Wrong to Try to Pick Up Girls in a Dungeon? 3"], "top_ids": ["9962", "40599", "42583"]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "我們仍未知道那天所看見的花名。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4033.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "命运/零话", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2718.9, "error": null, "top_titles": ["The King of Fighters: Destiny", "Mingyun Quan Tai", "Wangzhe Rongyao: Rongyao Zhi Zhang - Mingyun Pian"], "top_ids": [35204, 57371, 61592]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "mushoku tensei jobless reincarnation", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 3934.2, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Mushoku Tensei: Jobless Reincarnation", "無職転生 ~異世界行ったら本気だす~", "Mushoku Tensei II: Isekai Ittara Honki Dasu", "Mushoku Tensei: Jobless Reincarnation Season 2", "無職転生Ⅱ ~異世界行ったら本気だす~", "Mushoku Tensei III: Isekai Ittara Honki Dasu", "Mushoku Tensei: Jobless Reincarnation Season 3"], "top_ids": [108465, 146065, 178789]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "페이트/제로", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 2791.0, "error": null, "top_titles": ["Stress Zero", "Zero Sugar Saero CM"], "top_ids": [60915, 56525]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "転生したらスライムだった件", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3822.1, "error": null, "top_titles": ["Tensei shitara Slime Datta Ken", "Tensei shitara Slime Datta Ken 2nd Season Part 2", "Tensura 2", "Tensei shitara Slime Datta Ken OVA", "TenSura OVA"], "top_ids": ["41024", "43361", "42022"]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "The Devil is a Part-Timer!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5957.8, "error": null, "top_titles": ["Hataraku Maou-sama!", "はたらく魔王さま!", "The Devil is a Part-Timer!", "Hataraku Maou-sama!!", "The Devil is a Part-Timer! 2nd Season", "The Devil is a Part-Timer!!", "Hataraku Maou-sama!! 2nd Season", "The Devil is a Part-Timer! 3rd Season"], "top_ids": [15809, 48413, 53200]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "暗殺教室 第2期", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 4294.9, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Assassination Classroom Second Season", "暗殺教室 第2期"], "top_ids": [21170]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "아노하나", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6348.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "关于我转生变成史莱姆这档事", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2786.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "關於我轉生變成史萊姆這檔事", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2603.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "ja", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "暗杀教室 第2期", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3602.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Anohana: The Flower We Saw That Day", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 4567.8, "error": null, "top_titles": ["anohana: The Flower We Saw That Day", "Tatsuyuki Nagai", "Mari Okada"], "top_ids": ["15154", "12368"]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "the devil is a part timer", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3981.8, "error": null, "top_titles": ["Hataraku Maou-sama!", "はたらく魔王さま!", "The Devil is a Part-Timer!", "Hataraku Maou-sama!!", "The Devil is a Part-Timer! 2nd Season", "The Devil is a Part-Timer!!", "Hataraku Maou-sama!! 2nd Season", "The Devil is a Part-Timer! 3rd Season"], "top_ids": [15809, 48413, 53200]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "전생했더니 슬라임이었던 건에 대하여", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2857.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "暗杀教室 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5745.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Fate/Zero", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12184.2, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "この素晴らしい世界に祝福を! 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4366.1, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2", "Give Blessings to This Wonderful World! 2", "この素晴らしい世界に祝福を! 2", "Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "KonoSuba: God's Blessing on This Wonderful World! Second Season OVA", "Kono Subarashii Sekai ni Shukufuku wo! 2 OVA", "Kono Subarashii Sekai ni Shukufuku wo!", "Give Blessings to This Wonderful World!"], "top_ids": [32937, 34626, 30831]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "暗殺教室 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3554.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "为美好的世界献上祝福!2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2935.2, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2", "Give Blessings to This Wonderful World! 2", "この素晴らしい世界に祝福を! 2", "Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "KonoSuba: God's Blessing on This Wonderful World! Second Season OVA", "Kono Subarashii Sekai ni Shukufuku wo! 2 OVA", "Bungou Stray Dogs Wan! 2", "Bunsuto Wan! 2"], "top_ids": [32937, 34626, 62883]} +{"sample_index": 71, "mal_id": 9989, "popularity": 74, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "anohana the flower we saw that day", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8466.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "fate zero", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3175.7, "error": null, "top_titles": ["Fate/Zero", "Fate/Zero: Onegai! Einzbern Soudanshitsu", "Fate/Zero Remix"], "top_ids": [10087, 13263, 13183]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "はたらく魔王さま!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3396.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "暗殺教室 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5126.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "That Time I Got Reincarnated as a Slime", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12184.5, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "無職転生 ~異世界行ったら本気だす~", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2664.4, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Mushoku Tensei II: Isekai Ittara Honki Dasu", "Mushoku Tensei III: Isekai Ittara Honki Dasu"], "top_ids": [39535, 51179, 59193]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "暗杀教室 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2559.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "打工吧!魔王大人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5144.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_jaconv_norm", "query": "無職転生 ー異世界行ったら本気だすー", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3172.7, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Mushoku Tensei II: Isekai Ittara Honki Dasu", "Mushoku Tensei III: Isekai Ittara Honki Dasu"], "top_ids": [39535, 51179, 59193]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "암살교실 2기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3838.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "无职转生:到了异世界就拿出真本事", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2486.8, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "He Wei Dao x Re:Cong Ling Kaishi de Yi Shijie Shenghuo", "Mushoku Tensei II: Isekai Ittara Honki Dasu"], "top_ids": [39535, 38389, 51179]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "that time i got reincarnated as a slime", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5159.3, "error": null, "top_titles": ["Tensei shitara Slime Datta Ken", "That Time I Got Reincarnated as a Slime the Movie: Scarlet Bond", "Gekijouban Tensei shitara Slime Datta Ken", "That Time I Got Reincarnated as a Slime the Movie", "That Time I Got Reincarnated as a Slime the Movie: Tears of the Azure Sea", "Tensura Movie 2", "That Time I Got Reincarnated as a Slime the Movie: Tears of the Blue Sea"], "top_ids": ["41024", "45231", "49236"]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Assassination Classroom Second Season", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2367.5, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Assassination Classroom Second Season", "暗殺教室 第2期"], "top_ids": [21170]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "爲美好的世界獻上祝福!2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14626.0, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "無職轉生:到了異世界就拿出真本事", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 9603.8, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Mushoku Tensei II: Isekai Ittara Honki Dasu", "Mushoku Tensei III: Isekai Ittara Honki Dasu"], "top_ids": [39535, 51179, 59193]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ホリミヤ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 8958.3, "error": null, "top_titles": ["Horimiya", "Horimiya -piece-"], "top_ids": ["43545", "47234"]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "ほりみや", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2000.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "無職轉生~到了異世界就拿出真本事~", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3479.3, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Mushoku Tensei II: Isekai Ittara Honki Dasu", "Mushoku Tensei III: Isekai Ittara Honki Dasu"], "top_ids": [39535, 51179, 59193]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "assassination classroom second season", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 5851.3, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Assassination Classroom Second Season", "暗殺教室 第2期"], "top_ids": [21170]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "이 멋진 세계에 축복을!", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 6933.2, "error": null, "top_titles": ["I Byeol-e Pil-yohan", "あの星に君がいる", "Ano Hoshi ni Kimi ga Iru", "I Nolael Deul-eoyo", "이 노랠 들어요", "Listen To This Song", "Salgijohgo Balgeunnala, Naegagajin i Hanpyolo", "살기좋고 밝은나라, 내가가진 이 한표로"], "top_ids": [61595, 54550, 57274]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "やはり俺の青春ラブコメはまちがっている。", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 2172.0, "error": null, "top_titles": ["Yahari Ore no Seishun Love Come wa Machigatteiru.", "My Teen Romantic Comedy SNAFU", "やはり俺の青春ラブコメはまちがっている。", "Yahari Ore no Seishun Love Come wa Machigatteiru. Zoku", "My Teen Romantic Comedy SNAFU TOO!", "やはり俺の青春ラブコメはまちがっている。続", "Yahari Ore no Seishun Love Come wa Machigatteiru. Kan", "My Teen Romantic Comedy SNAFU Climax!"], "top_ids": [14813, 20698, 108489]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "堀与宫村", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3634.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "堀與宮村", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1807.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "KonoSuba: God's Blessing on This Wonderful World! 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4384.3, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2", "Give Blessings to This Wonderful World! 2", "この素晴らしい世界に祝福を! 2", "Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "KonoSuba: God's Blessing on This Wonderful World! Second Season OVA", "Kono Subarashii Sekai ni Shukufuku wo! 2 OVA", "Kono Subarashii Sekai ni Shukufuku wo!", "Give Blessings to This Wonderful World!"], "top_ids": [32937, 34626, 30831]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "无职转生~到了异世界就拿出真本事~", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4897.8, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "He Wei Dao x Re:Cong Ling Kaishi de Yi Shijie Shenghuo", "Mushoku Tensei II: Isekai Ittara Honki Dasu"], "top_ids": [39535, 38389, 51179]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "打工吧!魔王大人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 21240.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "호리미야", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2774.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "我的青春恋爱物语果然有问题", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 6028.7, "error": null, "top_titles": ["Yahari Ore no Seishun Love Come wa Machigatteiru.", "My Teen Romantic Comedy SNAFU", "やはり俺の青春ラブコメはまちがっている。", "Yahari Ore no Seishun Love Come wa Machigatteiru. Zoku", "My Teen Romantic Comedy SNAFU TOO!", "やはり俺の青春ラブコメはまちがっている。続"], "top_ids": [14813, 20698]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "無職轉生,到了異世界就拿出真本事", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5826.0, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Mushoku Tensei II: Isekai Ittara Honki Dasu", "Mushoku Tensei III: Isekai Ittara Honki Dasu"], "top_ids": [39535, 51179, 59193]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "我的青春戀愛物語果然有問題", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2809.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Horimiya", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 4831.7, "error": null, "top_titles": ["Horimiya", "Hori-san to Miyamura-kun", "Horimiya -piece-"], "top_ids": ["43545", "7164", "47234"]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "konosuba god s blessing on this wonderful world 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7457.3, "error": null, "top_titles": ["Kono Subarashii Sekai ni Shukufuku wo! 2", "Give Blessings to This Wonderful World! 2", "この素晴らしい世界に祝福を! 2", "Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", "KonoSuba: God's Blessing on This Wonderful World! Second Season OVA", "Kono Subarashii Sekai ni Shukufuku wo! 2 OVA", "Kono Subarashii Sekai ni Shukufuku wo!", "Give Blessings to This Wonderful World!"], "top_ids": [32937, 34626, 30831]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "打工吧!魔王大人", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6440.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "果然我的青春戀愛喜劇搞錯了。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3251.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "알바 뛰는 마왕님!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4620.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "果然我的青春恋爱喜剧搞错了。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3539.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "en", "backend": "kitsu", "variant": "enhance_romaji_to_katakana", "query": "ホリミヤ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 6433.1, "error": null, "top_titles": ["Horimiya", "Horimiya -piece-"], "top_ids": ["43545", "47234"]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ダンジョンに出会いを求めるのは間違っているだろうか", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6927.8, "error": null, "top_titles": ["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", "DanMachi", "Is It Wrong That I Want to Meet You in a Dungeon", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", "DanMachi 2nd Season", "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", "DanMachi 3rd Season"], "top_ids": [28121, 37347, 40454]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "horimiya", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 4086.8, "error": null, "top_titles": ["Horimiya", "Hori-san to Miyamura-kun", "Horimiya -piece-"], "top_ids": ["43545", "7164", "47234"]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "果然我的青春戀愛喜劇搞錯了。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5541.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "果然我的青春恋爱喜剧搞错了。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5558.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "无职转生,到了异世界就拿出真本事", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 18893.4, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "He Wei Dao x Re:Cong Ling Kaishi de Yi Shijie Shenghuo", "Mushoku Tensei II: Isekai Ittara Honki Dasu"], "top_ids": [39535, 38389, 51179]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "在地下城寻求邂逅是否搞错了什么", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12192.3, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "역시 내 청춘 러브코메디는 잘못됐다.", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2224.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "무직전생 ~이세계에 갔으면 최선을 다한다~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2832.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "My Teen Romantic Comedy SNAFU", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 2252.8, "error": null, "top_titles": ["Yahari Ore no Seishun Love Come wa Machigatteiru.", "My Teen Romantic Comedy SNAFU", "やはり俺の青春ラブコメはまちがっている。", "Yahari Ore no Seishun Love Come wa Machigatteiru. Kan", "My Teen Romantic Comedy SNAFU Climax!", "やはり俺の青春ラブコメはまちがっている。完", "Yahari Ore no Seishun Love Come wa Machigatteiru.: Kochira to Shite mo Karera Kanojora no Yukusue ni Sachi Ookaran Koto wo Negawazaru wo Enai.", "My Teen Romantic Comedy SNAFU OVA"], "top_ids": [14813, 108489, 18753]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "The Devil is a Part-Timer!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 18084.7, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "賭ケグルイ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14243.9, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "在地下城尋求邂逅是否搞錯了什麼", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5624.6, "error": null, "top_titles": ["Shen Zai Jiong Tu", "God on a Miserable Journey", "Eat Around the Mortal World", "Pokemon: Mewtwo! Ware wa Koko ni Ari", "Pocket Monsters: Myuutsu! I Exist Here", "ポケットモンスター ミュウツー! 我ハココニ在リ", "Kamiarizuki no Kodomo", "神在月のこども"], "top_ids": [62544, 1709, 41877]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "狂赌之渊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2310.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Mushoku Tensei: Jobless Reincarnation", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6923.7, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Mushoku Tensei: Isekai Ittara Honki Dasu - Eris no Goblin Toubatsu", "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2"], "top_ids": [39535, 50360, 45576]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "my teen romantic comedy snafu", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 3523.5, "error": null, "top_titles": ["Yahari Ore no Seishun Love Come wa Machigatteiru.", "My Teen Romantic Comedy SNAFU", "やはり俺の青春ラブコメはまちがっている。", "Yahari Ore no Seishun Love Come wa Machigatteiru. Kan", "My Teen Romantic Comedy SNAFU Climax!", "やはり俺の青春ラブコメはまちがっている。完", "Yahari Ore no Seishun Love Come wa Machigatteiru.: Kochira to Shite mo Karera Kanojora no Yukusue ni Sachi Ookaran Koto wo Negawazaru wo Enai.", "My Teen Romantic Comedy SNAFU OVA"], "top_ids": [14813, 108489, 18753]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "在地下城尋求邂逅是否搞錯了什麼", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4496.0, "error": null, "top_titles": ["Shen Zai Jiong Tu", "God on a Miserable Journey", "Eat Around the Mortal World", "Pokemon: Mewtwo! Ware wa Koko ni Ari", "Pocket Monsters: Myuutsu! I Exist Here", "ポケットモンスター ミュウツー! 我ハココニ在リ", "Kamiarizuki no Kodomo", "神在月のこども"], "top_ids": [62544, 1709, 41877]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "狂賭之淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4902.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "狂賭之淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6416.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "在地下城寻求邂逅是否搞错了什么", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 9654.3, "error": null, "top_titles": ["Huhuan Shaonu Special: Xiang Zuo de Shi Daodi Shi Shenme", "Huhuan Shaonu Tebie Pian: Xiang Zuo de Shi Daodi Shi Shenme", "呼唤少女特别篇 想做的事到底是什么", "Shen Zai Jiong Tu", "God on a Miserable Journey", "Eat Around the Mortal World", "Pokemon: Mewtwo! Ware wa Koko ni Ari", "Pocket Monsters: Myuutsu! I Exist Here"], "top_ids": [63533, 62544, 1709]} +{"sample_index": 72, "mal_id": 15809, "popularity": 75, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "the devil is a part timer", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4755.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ハイキュー!! セカンドシーズン", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13260.8, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "狂赌之渊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3732.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "mushoku tensei jobless reincarnation", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12288.5, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "はいきゅー!! せかんどしーずん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2364.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "在地下城尋求邂逅是否搞錯了什麼", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6234.9, "error": null, "top_titles": ["Shen Zai Jiong Tu", "God on a Miserable Journey", "Eat Around the Mortal World", "Pokemon: Mewtwo! Ware wa Koko ni Ari", "Pocket Monsters: Myuutsu! I Exist Here", "ポケットモンスター ミュウツー! 我ハココニ在リ", "Kamiarizuki no Kodomo", "神在月のこども"], "top_ids": [62544, 1709, 41877]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "この素晴らしい世界に祝福を! 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4765.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "暗殺教室 第2期", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3204.6, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Ranma ½ (2024) 2nd Season", "2.5-jigen no Ririsa 2nd Season"], "top_ids": [30654, 60564, 60510]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "狂賭之淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5128.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "为美好的世界献上祝福!2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2213.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "排球少年 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4459.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "在地下城寻求邂逅是否搞错了什么", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6990.8, "error": null, "top_titles": ["Huhuan Shaonu Special: Xiang Zuo de Shi Daodi Shi Shenme", "Huhuan Shaonu Tebie Pian: Xiang Zuo de Shi Daodi Shi Shenme", "呼唤少女特别篇 想做的事到底是什么", "Shen Zai Jiong Tu", "God on a Miserable Journey", "Eat Around the Mortal World", "Pokemon: Mewtwo! Ware wa Koko ni Ari", "Pocket Monsters: Myuutsu! I Exist Here"], "top_ids": [63533, 62544, 1709]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "排球少年!!第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4395.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "하이큐!! 세컨드 시즌", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2903.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "暗杀教室 第2期", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 9827.7, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Ranma ½ (2024) 2nd Season", "2.5-jigen no Ririsa 2nd Season"], "top_ids": [30654, 60564, 60510]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "던전에서 만남을 추구하면 안 되는 걸까", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 6412.5, "error": null, "top_titles": ["Idaelo Gwaenchanh-eun Geolkka?", "이대로 괜찮은 걸까?", "Comedy"], "top_ids": [48308]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "暗杀教室 第二季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3341.9, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Jiandao Di Yi Xian 2nd Season", "Jiayou Ba! San Er Ban 2nd Season"], "top_ids": [30654, 59087, 47297]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "狂赌之渊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12186.3, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "이 멋진 세계에 축복을!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14009.2, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "카케구루이", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2698.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "暗殺教室 第二季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3434.2, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu"], "top_ids": [30654, 19759, 24833]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4074.6, "error": null, "top_titles": ["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", "DanMachi", "Is It Wrong That I Want to Meet You in a Dungeon", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", "DanMachi 2nd Season", "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", "DanMachi 3rd Season"], "top_ids": [28121, 37347, 40454]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Kakegurui", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2597.2, "error": null, "top_titles": ["Kakegurui", "Kakegurui Twin", "Kakegurui Futago", "Compulsive Gambler Twin", "Kakegurui Picture Drama", "Kakegurui: Compulsive Gambler Picture Drama"], "top_ids": ["13252", "45471", "42112"]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Haikyu!! 2nd Season", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12163.2, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "KonoSuba: God's Blessing on This Wonderful World! 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6169.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "暗殺教室 第二季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6086.6, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu"], "top_ids": [30654, 19759, 24833]} +{"sample_index": 73, "mal_id": 32937, "popularity": 76, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "konosuba god s blessing on this wonderful world 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4478.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "is it wrong to try to pick up girls in a dungeon", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3741.6, "error": null, "top_titles": ["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", "DanMachi", "Is It Wrong That I Want to Meet You in a Dungeon", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", "DanMachi 2nd Season", "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", "DanMachi 3rd Season"], "top_ids": [28121, 37347, 40454]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "暗杀教室 第二季", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4637.3, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Jiandao Di Yi Xian 2nd Season", "Jiayou Ba! San Er Ban 2nd Season"], "top_ids": [30654, 59087, 47297]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "転生したらスライムだった件", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3088.1, "error": null, "top_titles": ["Tensei shitara Slime Datta Ken", "TenSura", "転生したらスライムだった件", "Tensei shitara Slime Datta Ken 2nd Season", "Tensura 2", "Tensei shitara Slime Datta Ken 2nd Season Part 2"], "top_ids": [37430, 39551, 41487]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "암살교실 2기", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3111.6, "error": null, "top_titles": ["Dudadakung 2nd Season", "Biklonz 2nd Season", "Athlon Tobot 2"], "top_ids": [48170, 59948, 52737]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "en", "backend": "kitsu", "variant": "enhance_romaji_to_katakana", "query": "カケグルイ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13941.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "haikyu 2nd season", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 8949.0, "error": null, "top_titles": ["Haikyuu!! 2nd Season", "HAIKYU!! 2nd Season", "ハイキュー!! セカンドシーズン", "Haikyuu!! TO THE TOP 2", "HAIKYU!! TO THE TOP Part 2", "ハイキュー!! TO THE TOP 2"], "top_ids": [20992, 113538]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "关于我转生变成史莱姆这档事", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 3047.7, "error": null, "top_titles": ["He Wei Dao x Guan Yu Wo Zhuan Sheng Bian Cheng Shi Lai Mu Zhe Dang Shi", "合味道×关于我转生变成史莱姆这档事", "He Wei Dao x That Time I Got Reincarnated as a Slime", "Huhuan Shaonu Special: Xiang Zuo de Shi Daodi Shi Shenme", "Huhuan Shaonu Tebie Pian: Xiang Zuo de Shi Daodi Shi Shenme", "呼唤少女特别篇 想做的事到底是什么", "Hitorigoto", "他人り事"], "top_ids": [54050, 63533, 63171]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Assassination Classroom Second Season", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3612.4, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 4th Season: 2-nensei-hen 1 Gakki", "Ansatsu Kyoushitsu: Jump Festa 2013 Special"], "top_ids": [30654, 59708, 19759]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "kakegurui", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 3034.2, "error": null, "top_titles": ["Kakegurui", "Kakegurui Twin", "Kakegurui Futago", "Compulsive Gambler Twin", "Kakegurui Picture Drama", "Kakegurui: Compulsive Gambler Picture Drama"], "top_ids": ["13252", "45471", "42112"]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "關於我轉生變成史萊姆這檔事", "hit": true, "position": 5, "kind": "title_substring", "n_returned": 10, "duration_ms": 3326.4, "error": null, "top_titles": ["Huhuan Shaonu Special: Xiang Zuo de Shi Daodi Shi Shenme", "Huhuan Shaonu Tebie Pian: Xiang Zuo de Shi Daodi Shi Shenme", "呼唤少女特别篇 想做的事到底是什么", "Hitorigoto", "他人り事", "Music", "Aa! Megami-sama!: Chicchai tte Koto wa Benri da ne", "Oh! My Goddess: Being Small is Convenient"], "top_ids": [63533, 63171, 303]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ダンジョンに出会いを求めるのは間違っているだろうか", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 11999.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "進撃の巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 8221.3, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Attack on Titan Final Season Part 2", "進撃の巨人 The Final Season Part 2"], "top_ids": [131681]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "在地下城寻求邂逅是否搞错了什么", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4153.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "进击的巨人 最终季 Part.2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2105.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "assassination classroom second season", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2809.3, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 4th Season: 2-nensei-hen 1 Gakki", "Ansatsu Kyoushitsu: Jump Festa 2013 Special"], "top_ids": [30654, 59708, 19759]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "エルフェンリート", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 9512.4, "error": null, "top_titles": ["Elfen Lied", "Elfen Song", "Elfic Song", "Elfen Lied Special", "Elfen Lied OVA"], "top_ids": ["201", "343"]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "やはり俺の青春ラブコメはまちがっている。", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3948.0, "error": null, "top_titles": ["Yahari Ore no Seishun Love Comedy wa Machigatteiru.", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan: Dakara, Shishunki wa Owarazu ni, Seishun wa Tsuzuiteiku.", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku OVA"], "top_ids": [14813, 46431, 33161]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "전생했더니 슬라임이었던 건에 대하여", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12256.1, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "進擊的巨人 最終季 Part.2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6399.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "えるふぇんりーと", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6087.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "That Time I Got Reincarnated as a Slime", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2603.9, "error": null, "top_titles": ["Tensei shitara Slime Datta Ken", "TenSura", "転生したらスライムだった件", "Tensei shitara Slime Datta Ken 2nd Season", "Tensura 2", "Tensei shitara Slime Datta Ken 2nd Season Part 2"], "top_ids": [37430, 39551, 41487]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "進擊的巨人 The Final Season Part 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2292.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "在地下城尋求邂逅是否搞錯了什麼", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9854.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "엘펜리트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2484.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "我的青春恋爱物语果然有问题", "hit": true, "position": 5, "kind": "title_substring", "n_returned": 10, "duration_ms": 7518.6, "error": null, "top_titles": ["Sansan de Shenghuo Guoran You Wenti", "Seishun Fuufu Monogatari: Koiko no Mainichi", "Mi Nuo de Zhong Er Qingchun"], "top_ids": [55133, 10045, 47356]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "在地下城尋求邂逅是否搞錯了什麼", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5099.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "进击的巨人 The Final Season Part 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6240.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "我的青春戀愛物語果然有問題", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 7184.5, "error": null, "top_titles": ["Sansan de Shenghuo Guoran You Wenti", "Seishun Fuufu Monogatari: Koiko no Mainichi", "Ai no Wakakusa Monogatari Specials"], "top_ids": [55133, 10045, 15607]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Elfen Lied", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 8735.2, "error": null, "top_titles": ["Elfen Lied", "Elfen Song", "Elfic Song", "Elfen Lied Special", "Elfen Lied OVA"], "top_ids": ["201", "343"]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "that time i got reincarnated as a slime", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 9586.3, "error": null, "top_titles": ["Tensei shitara Slime Datta Ken", "TenSura", "転生したらスライムだった件", "Tensei shitara Slime Datta Ken 2nd Season", "Tensura 2", "Tensei shitara Slime Datta Ken 2nd Season Part 2"], "top_ids": [37430, 39551, 41487]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "果然我的青春戀愛喜劇搞錯了。", "hit": true, "position": 8, "kind": "title_substring", "n_returned": 10, "duration_ms": 3191.3, "error": null, "top_titles": ["Zhang Le Tui De Mang Guo", "Mi Nuo de Zhong Er Qingchun", "Wo de Shixiong Tai Qiang Le"], "top_ids": [43542, 47356, 61212]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "던전에서 만남을 추구하면 안 되는 걸까", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8554.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ホリミヤ", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 4719.7, "error": null, "top_titles": ["Horimiya", "Hori-san and Miyamura-kun", "ホリミヤ", "Horimiya: Piece", "ホリミヤ -piece-", "Horimiya: The Missing Pieces"], "top_ids": [42897, 54856]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "果然我的青春恋爱喜剧搞错了。", "hit": true, "position": 7, "kind": "title_substring", "n_returned": 10, "duration_ms": 3904.4, "error": null, "top_titles": ["Wo Cuole", "Zhang Le Tui De Mang Guo", "Mi Nuo de Zhong Er Qingchun"], "top_ids": [43805, 43542, 47356]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "elfen lied", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 3820.4, "error": null, "top_titles": ["Elfen Lied", "Elfen Song", "Elfic Song", "Elfen Lied Special", "Elfen Lied OVA"], "top_ids": ["201", "343"]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "進擊的巨人 The Final Season Part 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12180.5, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "果然我的青春戀愛喜劇搞錯了。", "hit": true, "position": 8, "kind": "title_substring", "n_returned": 10, "duration_ms": 2535.8, "error": null, "top_titles": ["Zhang Le Tui De Mang Guo", "Mi Nuo de Zhong Er Qingchun", "Wo de Shixiong Tai Qiang Le"], "top_ids": [43542, 47356, 61212]} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", "hit": true, "position": 5, "kind": "title_exact", "n_returned": 11, "duration_ms": 6011.1, "error": null, "top_titles": ["Is It Wrong to Try to Pick Up Girls in a Dungeon? VI", "Fujino Ōmori", "Suzuhito Yasuda", "Is It Wrong to Try to Pick Up Girls in a Dungeon? V", "Hideki Tachibana", "Hideki Shirane", "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV"], "top_ids": ["38451", "30574", "26400"]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "学園黙示録 HIGHSCHOOL OF THE DEAD", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2845.9, "error": null, "top_titles": ["Highschool of the Dead", "Gakuen Mokushiroku: Highschool of the Dead", "HOTD", "Highschool of the Dead: Drifters of the Dead", "High School of the Dead OVA"], "top_ids": ["5187", "5767"]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "果然我的青春恋爱喜剧搞错了。", "hit": true, "position": 7, "kind": "title_substring", "n_returned": 10, "duration_ms": 3780.6, "error": null, "top_titles": ["Wo Cuole", "Zhang Le Tui De Mang Guo", "Mi Nuo de Zhong Er Qingchun"], "top_ids": [43805, 43542, 47356]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "学园黙示录 HIGHSCHOOL OF THE DEAD", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 4262.6, "error": null, "top_titles": ["Highschool of the Dead", "Gakuen Mokushiroku: Highschool of the Dead", "HOTD", "Highschool of the Dead: Drifters of the Dead", "High School of the Dead OVA"], "top_ids": ["5187", "5767"]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "學園黙示録 HIGHSCHOOL OF THE DEAD", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 4183.5, "error": null, "top_titles": ["Highschool of the Dead", "Gakuen Mokushiroku: Highschool of the Dead", "HOTD", "Highschool of the Dead: Drifters of the Dead", "High School of the Dead OVA"], "top_ids": ["5187", "5767"]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "进击的巨人 The Final Season Part 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12173.5, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "역시 내 청춘 러브코메디는 잘못됐다.", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 8357.3, "error": null, "top_titles": ["Naeyeop", "Naeil", "Naeil-eun Pyeongbeomhae Jilgeoya"], "top_ids": [53339, 54554, 35996]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "ほりみや", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 16330.1, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "学园默示录", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4527.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 74, "mal_id": 28121, "popularity": 77, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "is it wrong to try to pick up girls in a dungeon", "hit": true, "position": 5, "kind": "title_exact", "n_returned": 11, "duration_ms": 4462.6, "error": null, "top_titles": ["Is It Wrong to Try to Pick Up Girls in a Dungeon? VI", "Fujino Ōmori", "Suzuhito Yasuda", "Is It Wrong to Try to Pick Up Girls in a Dungeon? V", "Hideki Tachibana", "Hideki Shirane", "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV"], "top_ids": ["38451", "30574", "26400"]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "My Teen Romantic Comedy SNAFU", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3187.7, "error": null, "top_titles": ["Yahari Ore no Seishun Love Comedy wa Machigatteiru.", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. OVA", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku"], "top_ids": [14813, 18753, 23847]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "진격의 거인: 파이널 시즌 파트 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4509.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "堀与宫村", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 10, "duration_ms": 3050.7, "error": null, "top_titles": ["Mesu wo Karu Mura", "牝を狩る村", "Queen Bee", "Leonardo Hakase to Kirin-mura no Nakama-tachi to Taka no Tsumedan", "レオナルド博士とキリン村のなかまたちと鷹の爪団", "Comedy", "Sylvanian Families: Sylvania Mura no Takaramono", "The Treasure Of Sylvanian Village"], "top_ids": [62537, 62531, 62375]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "転生したらスライムだった件", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3272.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Attack on Titan: Final Season Part 2", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 4002.4, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Attack on Titan Final Season Part 2", "進撃の巨人 The Final Season Part 2", "Shingeki no Kyojin: The Final Season - Kanketsu-hen Kouhen", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2", "進撃の巨人 The Final Season完結編 後編"], "top_ids": [131681, 162314]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "关于我转生变成史莱姆这档事", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2078.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "堀與宮村", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 4429.7, "error": null, "top_titles": ["Hori-san to Miyamura-kun", "Horimiya", "堀さんと宮村くん"], "top_ids": [14753]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "學園默示錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7443.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "전생했더니 슬라임이었던 건에 대하여", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3885.1, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "호리미야", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5227.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "學園默示錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3539.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Horimiya", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2529.4, "error": null, "top_titles": ["Horimiya", "Hori-san and Miyamura-kun", "ホリミヤ", "Hori-san to Miyamura-kun", "堀さんと宮村くん", "Horimiya: Piece", "ホリミヤ -piece-", "Horimiya: The Missing Pieces"], "top_ids": [42897, 14753, 54856]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "That Time I Got Reincarnated as a Slime", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 9, "duration_ms": 5377.4, "error": null, "top_titles": ["That Time I Got Reincarnated as a Slime the Movie: Tears of the Azure Sea", "Yasuhito Kikuchi", "Toshizō Nemoto", "That Time I Got Reincarnated as a Slime", "Naokatsu Tsuda", "Hitomi Ogawa", "That Time I Got Reincarnated as a Slime: Visions of Coleus", "Atsushi Nakayama"], "top_ids": ["34556", "33626", "27167"]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan final season part 2", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 5203.2, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Attack on Titan Final Season Part 2", "進撃の巨人 The Final Season Part 2", "Shingeki no Kyojin: The Final Season - Kanketsu-hen Kouhen", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2", "進撃の巨人 The Final Season完結編 後編"], "top_ids": [131681, 162314]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "en", "backend": "jikan", "variant": "enhance_romaji_to_katakana", "query": "ホリミヤ", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 5700.0, "error": null, "top_titles": ["Horimiya", "Hori-san and Miyamura-kun", "ホリミヤ", "Horimiya: Piece", "ホリミヤ -piece-", "Horimiya: The Missing Pieces"], "top_ids": [42897, 54856]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "学园默示录", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8320.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "學園默示錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2473.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "鋼の錬金術師", "hit": true, "position": 0, "kind": "id", "n_returned": 9, "duration_ms": 4661.3, "error": null, "top_titles": ["Hagane no Renkinjutsushi", "Fullmetal Alchemist", "鋼の錬金術師", "Hagane no Renkinjutsushi: Reflections", "Fullmetal Alchemist: Reflections", "鋼の錬金術師 Reflections", "Hagane no Renkinjutsushi: PREMIUM COLLECTION", "Fullmetal Alchemist: Premium OVA Collection"], "top_ids": [121, 664, 908]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "horimiya", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 4427.2, "error": null, "top_titles": ["Horimiya", "Hori-san and Miyamura-kun", "ホリミヤ", "Hori-san to Miyamura-kun", "堀さんと宮村くん", "Horimiya: Piece", "ホリミヤ -piece-", "Horimiya: The Missing Pieces"], "top_ids": [42897, 14753, 54856]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "学园默示录", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3345.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "my teen romantic comedy snafu", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13241.9, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "학원묵시록", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1767.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "賭ケグルイ", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 4140.7, "error": null, "top_titles": ["Kakegurui", "Kakegurui: Compulsive Gambler", "Gambling School", "Kakegurui××", "Kakegurui 2nd Season", "Kakegurui: Compulsive Gambler 2nd Season", "Kakegurui Twin", "Compulsive Gambler Twin"], "top_ids": [34933, 37086, 50339]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "High School of the Dead", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3003.1, "error": null, "top_titles": ["Highschool of the Dead", "Gakuen Mokushiroku: Highschool of the Dead", "HOTD", "Highschool of the Dead: Drifters of the Dead", "High School of the Dead OVA", "Tokyo Ghoul: \"Jack\""], "top_ids": ["5187", "5767", "10789"]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "狂赌之渊", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2958.5, "error": null, "top_titles": ["Xing Yuan Zhi Jing", "星渊之境", "Transcendence Picture", "Wuzi Pao: Yuanziya Baowei Zhan", "五子炮之渊子崖保卫战", "Drama", "Date A Live II: Kurumi Star Festival", "Date A Live: Encore"], "top_ids": [51389, 45215, 22961]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ハイキュー!! セカンドシーズン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5710.7, "error": null, "top_titles": ["Haikyuu!! Second Season", "Haikyuu!!", "Haikyuu!! (OVA)"], "top_ids": [28891, 20583, 40372]} +{"sample_index": 75, "mal_id": 37430, "popularity": 78, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "that time i got reincarnated as a slime", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 9, "duration_ms": 5756.9, "error": null, "top_titles": ["That Time I Got Reincarnated as a Slime the Movie: Tears of the Azure Sea", "Yasuhito Kikuchi", "Toshizō Nemoto", "That Time I Got Reincarnated as a Slime", "Naokatsu Tsuda", "Hitomi Ogawa", "That Time I Got Reincarnated as a Slime: Visions of Coleus", "Atsushi Nakayama"], "top_ids": ["34556", "33626", "27167"]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "狂賭之淵", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4267.4, "error": null, "top_titles": ["Date A Live II: Kurumi Star Festival", "Date A Live: Encore", "Date A Live II Episode 11", "Gakuen no Ikenie: Nagusami Mono to Kashita Kyonyuu Furyou Shoujo", "Gakuen no Ikenie: Nagusami Mono to Kashita Kyonyuu Furyou Shoujo - The Animation", "学園の生贄――慰み者と化した巨乳不良少女~白濁に侵される褐色&堕肉の狂宴~ THE ANIMATION", "Akujiki Reijou to Kyouketsu Koushaku", "悪食令嬢と狂血公爵"], "top_ids": [22961, 30658, 60162]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "钢之炼金术师", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 15032.3, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "high school of the dead", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5552.8, "error": null, "top_titles": ["Highschool of the Dead", "Gakuen Mokushiroku: Highschool of the Dead", "HOTD", "Highschool of the Dead: Drifters of the Dead", "High School of the Dead OVA", "Tokyo Ghoul: \"Jack\""], "top_ids": ["5187", "5767", "10789"]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "はいきゅー!! せかんどしーずん", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 7087.1, "error": null, "top_titles": ["Dondonshi Television Vol. 0: Saito-san wo Shinryaku shita yo.", "Atsumare! Kakkoii 1-nensei Power!: Korasho Kyuushutsu Daisakusen", "Yuuki no Kakkoi 1-nensei ni Daihenshin DVD: Besse Aka-Pen Sensei"], "top_ids": [63068, 54425, 56138]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "鋼之鍊金術師", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2923.6, "error": null, "top_titles": ["Hagane no Renkinjutsushi", "Fullmetal Alchemist", "鋼の錬金術師"], "top_ids": [121]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "排球少年 第二季", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 3002.6, "error": null, "top_titles": ["Shaonian Jinyiwei 2nd Season", "Shaonian Ge Xing: Feng Hua Xue Yue Pian Part 1", "Shaonian Ge Xing: Feng Hua Xue Yue Pian Part 2"], "top_ids": [37152, 40732, 50629]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "鋼之鍊金術師", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2581.2, "error": null, "top_titles": ["Hagane no Renkinjutsushi", "Fullmetal Alchemist", "鋼の錬金術師"], "top_ids": [121]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "フェイト/ゼロ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 4251.8, "error": null, "top_titles": ["Fate/Zero", "Fate/Zero 2nd Season", "Fate/Zero Second Season", "Fate/Zero Remix", "Fate/Zero Remix I", "Fate/Zero Remix II"], "top_ids": ["6028", "7658", "6906"]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "狂賭之淵", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 9118.5, "error": null, "top_titles": ["Date A Live II: Kurumi Star Festival", "Date A Live: Encore", "Date A Live II Episode 11", "Gakuen no Ikenie: Nagusami Mono to Kashita Kyonyuu Furyou Shoujo", "Gakuen no Ikenie: Nagusami Mono to Kashita Kyonyuu Furyou Shoujo - The Animation", "学園の生贄――慰み者と化した巨乳不良少女~白濁に侵される褐色&堕肉の狂宴~ THE ANIMATION", "Akujiki Reijou to Kyouketsu Koushaku", "悪食令嬢と狂血公爵"], "top_ids": [22961, 30658, 60162]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "排球少年!!第二季", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 1959.5, "error": null, "top_titles": ["Shaonian Jinyiwei 2nd Season", "Shaonian Ge Xing: Feng Hua Xue Yue Pian Part 1", "Shaonian Ge Xing: Feng Hua Xue Yue Pian Part 2"], "top_ids": [37152, 40732, 50629]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ホリミヤ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12347.6, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "ふぇいと/ぜろ", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 2, "duration_ms": 2625.0, "error": null, "top_titles": ["Zero", "Mars Red: Zero Kikan Nippou"], "top_ids": ["49598", "44251"]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "狂赌之渊", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3731.7, "error": null, "top_titles": ["Xing Yuan Zhi Jing", "星渊之境", "Transcendence Picture", "Wuzi Pao: Yuanziya Baowei Zhan", "五子炮之渊子崖保卫战", "Drama", "Date A Live II: Kurumi Star Festival", "Date A Live: Encore"], "top_ids": [51389, 45215, 22961]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "하이큐!! 세컨드 시즌", "hit": true, "position": 2, "kind": "title_substring", "n_returned": 10, "duration_ms": 3669.2, "error": null, "top_titles": ["Mabeob Chunjamun Season 2", "Spookiz 4th Season", "Spookiz 2nd Season"], "top_ids": [39686, 54059, 54055]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "ほりみや", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3383.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "钢之炼金术师", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 6535.8, "error": null, "top_titles": ["Hagane no Renkinjutsushi", "Fullmetal Alchemist", "鋼の錬金術師", "Hagane no Renkinjutsushi: FULLMETAL ALCHEMIST", "Fullmetal Alchemist: Brotherhood", "鋼の錬金術師 FULLMETAL ALCHEMIST", "Hagane no Renkinjutsushi: Milos no Seinaru Hoshi", "Fullmetal Alchemist: The Sacred Star of Milos"], "top_ids": [121, 5114, 9135]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "狂賭之淵", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2574.2, "error": null, "top_titles": ["Date A Live II: Kurumi Star Festival", "Date A Live: Encore", "Date A Live II Episode 11", "Gakuen no Ikenie: Nagusami Mono to Kashita Kyonyuu Furyou Shoujo", "Gakuen no Ikenie: Nagusami Mono to Kashita Kyonyuu Furyou Shoujo - The Animation", "学園の生贄――慰み者と化した巨乳不良少女~白濁に侵される褐色&堕肉の狂宴~ THE ANIMATION", "Akujiki Reijou to Kyouketsu Koushaku", "悪食令嬢と狂血公爵"], "top_ids": [22961, 30658, 60162]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "狂赌之渊", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2074.2, "error": null, "top_titles": ["Xing Yuan Zhi Jing", "星渊之境", "Transcendence Picture", "Wuzi Pao: Yuanziya Baowei Zhan", "五子炮之渊子崖保卫战", "Drama", "Date A Live II: Kurumi Star Festival", "Date A Live: Encore"], "top_ids": [51389, 45215, 22961]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "堀与宫村", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4734.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "카케구루이", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2708.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Haikyu!! 2nd Season", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7723.4, "error": null, "top_titles": ["Haikyuu!! Second Season", "Shi Yi Chang An: Mingyue Jishi You Er", "Magia Record: Mahou Shoujo Madoka☆Magica Gaiden 2nd Season - Kakusei Zenya Recap"], "top_ids": [28891, 48537, 49848]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "鋼之鍊金術師", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 8150.2, "error": null, "top_titles": ["Hagane no Renkinjutsushi", "Fullmetal Alchemist", "鋼の錬金術師"], "top_ids": [121]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "命运之零", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 11525.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "钢之炼金术师", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2106.9, "error": null, "top_titles": ["Hagane no Renkinjutsushi", "Fullmetal Alchemist", "鋼の錬金術師", "Hagane no Renkinjutsushi: FULLMETAL ALCHEMIST", "Fullmetal Alchemist: Brotherhood", "鋼の錬金術師 FULLMETAL ALCHEMIST", "Hagane no Renkinjutsushi: Milos no Seinaru Hoshi", "Fullmetal Alchemist: The Sacred Star of Milos"], "top_ids": [121, 5114, 9135]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "강철의 연금술사", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2559.8, "error": null, "top_titles": ["Hagane no Renkinjutsushi", "Fullmetal Alchemist", "鋼の錬金術師"], "top_ids": [121]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Kakegurui", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 7158.2, "error": null, "top_titles": ["Kakegurui", "Kakegurui: Compulsive Gambler", "Gambling School", "Kakegurui××", "Kakegurui 2nd Season", "Kakegurui: Compulsive Gambler 2nd Season", "Kakegurui Twin", "Compulsive Gambler Twin"], "top_ids": [34933, 37086, 50339]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "haikyu 2nd season", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3083.7, "error": null, "top_titles": ["Haikyuu!! Second Season", "Shi Yi Chang An: Mingyue Jishi You Er", "Magia Record: Mahou Shoujo Madoka☆Magica Gaiden 2nd Season - Kakusei Zenya Recap"], "top_ids": [28891, 48537, 49848]} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "호리미야", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12191.5, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "進撃の巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2908.0, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin Season 3 Part 2", "Shingeki no Kyojin: The Final Season"], "top_ids": [48583, 38524, 40028]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Fullmetal Alchemist", "hit": true, "position": 0, "kind": "id", "n_returned": 9, "duration_ms": 7623.8, "error": null, "top_titles": ["Hagane no Renkinjutsushi", "Fullmetal Alchemist", "鋼の錬金術師", "Hagane no Renkinjutsushi: FULLMETAL ALCHEMIST", "Fullmetal Alchemist: Brotherhood", "鋼の錬金術師 FULLMETAL ALCHEMIST", "Hagane no Renkinjutsushi: Milos no Seinaru Hoshi", "Fullmetal Alchemist: The Sacred Star of Milos"], "top_ids": [121, 5114, 9135]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "命運之零", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12246.9, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "en", "backend": "jikan", "variant": "enhance_romaji_to_katakana", "query": "カケグルイ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8450.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "命運/零話", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 4120.4, "error": null, "top_titles": ["Denshin Denrei Denwa", "Rayca", "Denwa Kakumei Naisen"], "top_ids": ["40753", "3048", "44454"]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "fullmetal alchemist", "hit": true, "position": 0, "kind": "id", "n_returned": 9, "duration_ms": 3139.2, "error": null, "top_titles": ["Hagane no Renkinjutsushi", "Fullmetal Alchemist", "鋼の錬金術師", "Hagane no Renkinjutsushi: FULLMETAL ALCHEMIST", "Fullmetal Alchemist: Brotherhood", "鋼の錬金術師 FULLMETAL ALCHEMIST", "Hagane no Renkinjutsushi: Milos no Seinaru Hoshi", "Fullmetal Alchemist: The Sacred Star of Milos"], "top_ids": [121, 5114, 9135]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "kakegurui", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 6665.8, "error": null, "top_titles": ["Kakegurui", "Kakegurui: Compulsive Gambler", "Gambling School", "Kakegurui××", "Kakegurui 2nd Season", "Kakegurui: Compulsive Gambler 2nd Season", "Kakegurui Twin", "Compulsive Gambler Twin"], "top_ids": [34933, 37086, 50339]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "命运/零话", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3546.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Horimiya", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 2, "duration_ms": 12955.2, "error": null, "top_titles": ["Horimiya: The Missing Pieces", "Masashi Ishihama", "Takao Yoshioka", "Horimiya"], "top_ids": ["27616", "23781"]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ノラガミ ARAGOTO", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 1809.3, "error": null, "top_titles": ["Noragami ARAGOTO", "Noragami Aragoto", "ノラガミ ARAGOTO", "Noragami ARAGOTO OVA", "ノラガミ ARAGOTO OAD"], "top_ids": [21128, 119941]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "进击的巨人 最终季 Part.2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13378.9, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "エルフェンリート", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3500.8, "error": null, "top_titles": ["Elfen Lied", "Elfen Song", "Elfic Song", "Elfen Lied: Tooriame nite Arui wa, Shoujo wa Ikani Shite Sono Shinjou ni Itatta ka? - Regenschauer", "Elfen Lied Special", "Elfen Lied OVA", "El", "E'l"], "top_ids": [226, 376, 4357]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "페이트/제로", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 3803.6, "error": null, "top_titles": ["Zero Sugar Saero CM"], "top_ids": ["47992"]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "のらがみ ARAGOTO", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4037.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 76, "mal_id": 42897, "popularity": 79, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "horimiya", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4502.0, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "野良神 ARAGOTO", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2326.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Fate/Zero", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3242.8, "error": null, "top_titles": ["Fate/Zero", "Fate/Zero 2nd Season", "Fate/Zero Second Season", "Fate/Zero: Onegai! Einzbern Soudanshitsu", "Fate/Zero Specials", "Please! Einzbern Consultation Room"], "top_ids": ["6028", "7658", "6928"]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "進擊的巨人 最終季 Part.2", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 4905.1, "error": null, "top_titles": ["Shingeki no Kyojin Season 3 Part 2", "Shingeki no Kyojin: The Final Season Part 2", "Hataraku Maou-sama!! 2nd Season"], "top_ids": [38524, 48583, 53200]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "流浪神差II", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1848.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "賭ケグルイ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3930.9, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "流浪神差 ARAGOTO", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2035.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "進擊的巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3520.4, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin Season 3 Part 2", "Hataraku Maou-sama!! 2nd Season"], "top_ids": [48583, 38524, 53200]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "狂赌之渊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3921.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "노라가미 ARAGOTO", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2896.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "fate zero", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3937.1, "error": null, "top_titles": ["Fate/Zero", "Fate/Zero 2nd Season", "Fate/Zero Second Season", "Fate/Zero: Onegai! Einzbern Soudanshitsu", "Fate/Zero Specials", "Please! Einzbern Consultation Room"], "top_ids": ["6028", "7658", "6928"]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "进击的巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5615.3, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Hataraku Maou-sama!! 2nd Season", "Shingeki no Kyojin Season 3 Part 2"], "top_ids": [48583, 53200, 38524]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "狂賭之淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4455.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Noragami Aragoto", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3933.8, "error": null, "top_titles": ["Noragami ARAGOTO", "Noragami Aragoto", "ノラガミ ARAGOTO", "Noragami ARAGOTO OVA", "ノラガミ ARAGOTO OAD"], "top_ids": [21128, 119941]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "えるふぇんりーと", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 15597.1, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "進擊的巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5857.3, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin Season 3 Part 2", "Hataraku Maou-sama!! 2nd Season"], "top_ids": [48583, 38524, 53200]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "en", "backend": "anilist", "variant": "enhance_romaji_to_katakana", "query": "ノラガミ アラゴト", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 4039.6, "error": null, "top_titles": ["Noragami ARAGOTO", "Noragami Aragoto", "ノラガミ ARAGOTO", "Noragami ARAGOTO OVA", "ノラガミ ARAGOTO OAD"], "top_ids": [21128, 119941]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "狂賭之淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7179.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "無職転生 ~異世界行ったら本気だす~", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 8700.7, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", "Mushoku Tensei: Isekai Ittara Honki Dasu Season 2"], "top_ids": ["42323", "43907", "45950"]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "엘펜리트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6236.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "进击的巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2911.5, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Hataraku Maou-sama!! 2nd Season", "Shingeki no Kyojin Season 3 Part 2"], "top_ids": [48583, 53200, 38524]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "noragami aragoto", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3704.1, "error": null, "top_titles": ["Noragami ARAGOTO", "Noragami Aragoto", "ノラガミ ARAGOTO", "Noragami ARAGOTO OVA", "ノラガミ ARAGOTO OAD"], "top_ids": [21128, 119941]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "카케구루이", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3486.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_jaconv_norm", "query": "無職転生 ー異世界行ったら本気だすー", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 3693.7, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", "Mushoku Tensei: Isekai Ittara Honki Dasu Season 2"], "top_ids": ["42323", "43907", "45950"]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "文豪ストレイドッグス", "hit": true, "position": 0, "kind": "id", "n_returned": 9, "duration_ms": 3824.8, "error": null, "top_titles": ["Bungou Stray Dogs", "Bungo Stray Dogs", "文豪ストレイドッグス", "Bungou Stray Dogs Wan!", "Bungo Stray Dogs WAN!", "文豪ストレイドッグス わん!", "Bungou Stray Dogs: DEAD APPLE", "Bungo Stray Dogs: DEAD APPLE"], "top_ids": [21311, 120150, 98384]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Elfen Lied", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6810.4, "error": null, "top_titles": ["Elfen Lied", "Elfen Song", "Elfic Song", "Elfen Lied: Tooriame nite Arui wa, Shoujo wa Ikani Shite Sono Shinjou ni Itatta ka? - Regenschauer", "Elfen Lied Special", "Elfen Lied OVA", "Daishikkin Helena", "大失禁へレナ"], "top_ids": [226, 376, 3250]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "无职转生:到了异世界就拿出真本事", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3902.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "진격의 거인: 파이널 시즌 파트 2", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 7357.8, "error": null, "top_titles": ["Tobot: Daedosiui Yeongungdeul Season 3 Part 2", "Tobot: Daedosiui Yeongungdeul Season 2 Part 2", "Weiqi Shaonian 2"], "top_ids": [62456, 62453, 19839]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "無職轉生:到了異世界就拿出真本事", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2752.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "文豪野犬", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 2, "duration_ms": 3996.4, "error": null, "top_titles": ["Bungou Stray Dogs 3rd Season", "Bungo Stray Dogs 3", "文豪ストレイドッグス 第3シーズン", "Bungou Stray Dogs 4th Season", "Bungo Stray Dogs 4", "文豪ストレイドッグス 第4シーズン"], "top_ids": [103223, 141249]} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Kakegurui", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 3, "duration_ms": 8538.7, "error": null, "top_titles": ["Kakegurui twin", "Yuichiro Hayashi", "Kaori Makita", "Kakegurui", "Kiyoshi Matsuda", "Yasuko Kobayashi"], "top_ids": ["24957", "21292", "19102"]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "無職轉生~到了異世界就拿出真本事~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2955.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 77, "mal_id": 34933, "popularity": 80, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "kakegurui", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 3, "duration_ms": 2956.2, "error": null, "top_titles": ["Kakegurui twin", "Yuichiro Hayashi", "Kaori Makita", "Kakegurui", "Kiyoshi Matsuda", "Yasuko Kobayashi"], "top_ids": ["24957", "21292", "19102"]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "文豪Stray Dogs", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4466.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "elfen lied", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5400.7, "error": null, "top_titles": ["Elfen Lied", "Elfen Song", "Elfic Song", "Elfen Lied: Tooriame nite Arui wa, Shoujo wa Ikani Shite Sono Shinjou ni Itatta ka? - Regenschauer", "Elfen Lied Special", "Elfen Lied OVA", "Daishikkin Helena", "大失禁へレナ"], "top_ids": [226, 376, 3250]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "文豪Stray Dogs", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2313.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "エルフェンリート", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3577.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "学園黙示録 HIGHSCHOOL OF THE DEAD", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3970.2, "error": null, "top_titles": ["Highschool of the Dead", "Gakuen Mokushiroku: Highschool of the Dead", "HOTD", "Highschool of the Dead: Drifters of the Dead", "High School of the Dead OVA", "Haikyuu!! Karasuno Koukou vs. Shiratorizawa Gakuen Koukou", "Haikyuu!! Third Season", "Haikyuu!! Karasuno High VS Shiratorizawa Academy"], "top_ids": [8074, 9515, 32935]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "无职转生~到了异世界就拿出真本事~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8027.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Attack on Titan: Final Season Part 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 15251.9, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ja", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "学园黙示录 HIGHSCHOOL OF THE DEAD", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3624.4, "error": null, "top_titles": ["Highschool of the Dead", "Gakuen Mokushiroku: Highschool of the Dead", "HOTD", "Highschool of the Dead: Drifters of the Dead", "High School of the Dead OVA", "Kore wa Zombie desu ka? of the Dead", "Kore wa Zombie Desu ka? 2", "Koreha Zombie Desu ka? Jigokuhen"], "top_ids": [8074, 9515, 10790]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "無職轉生,到了異世界就拿出真本事", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3358.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "문호 스트레이 독스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7562.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "えるふぇんりーと", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7757.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Bungo Stray Dogs", "hit": true, "position": 0, "kind": "id", "n_returned": 9, "duration_ms": 2956.2, "error": null, "top_titles": ["Bungou Stray Dogs", "Bungo Stray Dogs", "文豪ストレイドッグス", "Bungou Stray Dogs 2nd Season", "Bungo Stray Dogs 2", "文豪ストレイドッグス 第2シーズン", "Bungou Stray Dogs 3rd Season", "Bungo Stray Dogs 3"], "top_ids": [21311, 21679, 103223]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "无职转生,到了异世界就拿出真本事", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5400.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ja", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "學園黙示録 HIGHSCHOOL OF THE DEAD", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7133.7, "error": null, "top_titles": ["Highschool of the Dead", "Gakuen Mokushiroku: Highschool of the Dead", "HOTD", "Highschool of the Dead: Drifters of the Dead", "High School of the Dead OVA", "Kore wa Zombie desu ka? of the Dead", "Kore wa Zombie Desu ka? 2", "Koreha Zombie Desu ka? Jigokuhen"], "top_ids": [8074, 9515, 10790]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "무직전생 ~이세계에 갔으면 최선을 다한다~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4370.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "学园默示录", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3684.5, "error": null, "top_titles": ["Suo Yao Lu", "锁妖录", "The Enchanted Map", "Huanggu En Chou Lu: Po Feng Pian", "Chronicles of Grace and Grudges in the Primordial Age", "荒古恩仇录·破风篇", "Tiandu Yilu", "天都异录"], "top_ids": [62796, 62480, 60855]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "bungo stray dogs", "hit": true, "position": 0, "kind": "id", "n_returned": 9, "duration_ms": 3616.0, "error": null, "top_titles": ["Bungou Stray Dogs", "Bungo Stray Dogs", "文豪ストレイドッグス", "Bungou Stray Dogs 2nd Season", "Bungo Stray Dogs 2", "文豪ストレイドッグス 第2シーズン", "Bungou Stray Dogs 3rd Season", "Bungo Stray Dogs 3"], "top_ids": [21311, 21679, 103223]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Mushoku Tensei: Jobless Reincarnation", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 1835.0, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", "Mushoku Tensei: Isekai Ittara Honki Dasu Season 2"], "top_ids": ["42323", "43907", "45950"]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "メイドインアビス", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 2797.7, "error": null, "top_titles": ["Made in Abyss", "メイドインアビス", "Made in Abyss: Fukaki Tamashii no Reimei", "Made in Abyss: Dawn of the Deep Soul", "メイドインアビス 深き魂の黎明", "Made in Abyss: Hourou Suru Tasogare", "Made in Abyss: Wandering Twilight", "メイドインアビス 放浪する黄昏"], "top_ids": [97986, 100643, 101344]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "엘펜리트", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12341.4, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "學園默示錄", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 3438.4, "error": null, "top_titles": ["Tokyo Majin Gakuen Kenpuuchou: Tou", "東京魔人學園剣風帖 龖(トウ)", "Tokyo Majin", "Tokyo Majin Gakuen Kenpuuchou: Tou Dai Ni Maku", "Tokyo Majin Gakuen Kenpucho: Tou Kenbu Hen", "Tokyo Majin Gakuen Kenpucho: Tou 2nd Act", "Meikoku Gakuen: Jutai-hen", "冥刻學園 受胎編"], "top_ids": [1860, 2683, 34747]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan final season part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4637.1, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin Season 3 Part 2", "Shingeki no Kyojin Season 2"], "top_ids": [48583, 38524, 25777]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "學園默示錄", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 2852.1, "error": null, "top_titles": ["Tokyo Majin Gakuen Kenpuuchou: Tou", "東京魔人學園剣風帖 龖(トウ)", "Tokyo Majin", "Tokyo Majin Gakuen Kenpuuchou: Tou Dai Ni Maku", "Tokyo Majin Gakuen Kenpucho: Tou Kenbu Hen", "Tokyo Majin Gakuen Kenpucho: Tou 2nd Act", "Meikoku Gakuen: Jutai-hen", "冥刻學園 受胎編"], "top_ids": [1860, 2683, 34747]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "めいどいんあびす", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4788.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "学园默示录", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2128.6, "error": null, "top_titles": ["Suo Yao Lu", "锁妖录", "The Enchanted Map", "Huanggu En Chou Lu: Po Feng Pian", "Chronicles of Grace and Grudges in the Primordial Age", "荒古恩仇录·破风篇", "Tiandu Yilu", "天都异录"], "top_ids": [62796, 62480, 60855]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "鋼の錬金術師", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3778.0, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood Specials", "Fullmetal Alchemist", "Fullmetal Alchemist: The Sacred Star of Milos"], "top_ids": [6421, 121, 9135]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "mushoku tensei jobless reincarnation", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 4563.0, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", "Mushoku Tensei: Isekai Ittara Honki Dasu Season 2"], "top_ids": ["42323", "43907", "45950"]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Elfen Lied", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6141.3, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "學園默示錄", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 3665.8, "error": null, "top_titles": ["Tokyo Majin Gakuen Kenpuuchou: Tou", "東京魔人學園剣風帖 龖(トウ)", "Tokyo Majin", "Tokyo Majin Gakuen Kenpuuchou: Tou Dai Ni Maku", "Tokyo Majin Gakuen Kenpucho: Tou Kenbu Hen", "Tokyo Majin Gakuen Kenpucho: Tou 2nd Act", "Meikoku Gakuen: Jutai-hen", "冥刻學園 受胎編"], "top_ids": [1860, 2683, 34747]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "暗殺教室 第2期", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 3286.3, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Ansatsu Kyoushitsu Season 2", "Ansatsu Kyoushitsu Final Season", "Ansatsu Kyoushitsu 2nd Season: Kagaijugyou-hen", "Assassination Classroom: Extracurricular Lesson"], "top_ids": ["10877", "11899"]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "钢之炼金术师", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4080.3, "error": null, "top_titles": ["Meishu Guan Zhi Ye: Jindai Guowai Meishu Pian", "Jinwu Wei: Feng Qi Jinling", "Meishu Guan Zhi Ye: Jindai Zhongguo Meishu Pian"], "top_ids": [46434, 58876, 46433]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "暗杀教室 第2期", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 5, "duration_ms": 3004.4, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu: Deai no Jikan", "Assassination Classroom", "Ansatsu Kyoushitsu (TV) Episode 0: Deai no Jikan", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special"], "top_ids": ["8640", "10020", "7973"]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "学园默示录", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3439.1, "error": null, "top_titles": ["Suo Yao Lu", "锁妖录", "The Enchanted Map", "Huanggu En Chou Lu: Po Feng Pian", "Chronicles of Grace and Grudges in the Primordial Age", "荒古恩仇录·破风篇", "Tiandu Yilu", "天都异录"], "top_ids": [62796, 62480, 60855]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "학원묵시록", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3834.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "来自深渊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12244.1, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "暗杀教室 第二季", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 5, "duration_ms": 4677.8, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu: Deai no Jikan", "Assassination Classroom", "Ansatsu Kyoushitsu (TV) Episode 0: Deai no Jikan", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special"], "top_ids": ["8640", "10020", "7973"]} +{"sample_index": 78, "mal_id": 226, "popularity": 81, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "elfen lied", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 5097.4, "error": null, "top_titles": ["Elfen Lied", "Mamoru Kanbe", "Takao Yoshioka"], "top_ids": ["5409", "4148"]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "High School of the Dead", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3255.0, "error": null, "top_titles": ["Highschool of the Dead", "Gakuen Mokushiroku: Highschool of the Dead", "HOTD", "Highschool of the Dead: Drifters of the Dead", "High School of the Dead OVA", "The God of High School", "Gat Obeu Hai Seukul", "갓 오브 하이스쿨"], "top_ids": [8074, 9515, 41353]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "暗殺教室 第二季", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 5, "duration_ms": 3210.2, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special", "Assassination Classroom", "Ansatsu Kyoushitsu: Deai no Jikan", "Ansatsu Kyoushitsu (TV) Episode 0: Deai no Jikan"], "top_ids": ["8640", "7973", "10020"]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "來自深淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4707.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "学園黙示録 HIGHSCHOOL OF THE DEAD", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3106.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "鋼之鍊金術師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12178.1, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "暗殺教室 第二季", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 5, "duration_ms": 2178.9, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special", "Assassination Classroom", "Ansatsu Kyoushitsu: Deai no Jikan", "Ansatsu Kyoushitsu (TV) Episode 0: Deai no Jikan"], "top_ids": ["8640", "7973", "10020"]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "鋼之鍊金術師", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3472.0, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood Specials", "Fullmetal Alchemist", "Fullmetal Alchemist: Brotherhood"], "top_ids": [6421, 121, 5114]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "暗杀教室 第二季", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 5, "duration_ms": 5131.2, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "Ansatsu Kyoushitsu: Deai no Jikan", "Assassination Classroom", "Ansatsu Kyoushitsu (TV) Episode 0: Deai no Jikan", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special"], "top_ids": ["8640", "10020", "7973"]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "來自深淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6117.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "high school of the dead", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5839.3, "error": null, "top_titles": ["Highschool of the Dead", "Gakuen Mokushiroku: Highschool of the Dead", "HOTD", "Highschool of the Dead: Drifters of the Dead", "High School of the Dead OVA", "The God of High School", "Gat Obeu Hai Seukul", "갓 오브 하이스쿨"], "top_ids": [8074, 9515, 41353]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "钢之炼金术师", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3045.2, "error": null, "top_titles": ["Meishu Guan Zhi Ye: Jindai Guowai Meishu Pian", "Jinwu Wei: Feng Qi Jinling", "Meishu Guan Zhi Ye: Jindai Zhongguo Meishu Pian"], "top_ids": [46434, 58876, 46433]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "学园默示录", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7735.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "암살교실 2기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2621.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "鋼之鍊金術師", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 4959.7, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood Specials", "Fullmetal Alchemist", "Fullmetal Alchemist: Brotherhood"], "top_ids": [6421, 121, 5114]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "學園默示錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5311.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "钢之炼金术师", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3346.7, "error": null, "top_titles": ["Meishu Guan Zhi Ye: Jindai Guowai Meishu Pian", "Jinwu Wei: Feng Qi Jinling", "Meishu Guan Zhi Ye: Jindai Zhongguo Meishu Pian"], "top_ids": [46434, 58876, 46433]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "學園默示錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2946.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Assassination Classroom Second Season", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 9187.1, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Ansatsu Kyoushitsu Season 2", "Ansatsu Kyoushitsu Final Season"], "top_ids": ["10877"]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "フェイト/ゼロ", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 11797.3, "error": null, "top_titles": ["Fate/Zero", "フェイト/ゼロ", "Aniplex", "Fate/Zero 2nd Season", "Fate/Zero Second Season", "フェイト/ゼロ 2ndシーズン", "Fate/Zero Remix", "Fate/Zero Remix I"], "top_ids": [10087, 11741, 13183]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "来自深渊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13321.5, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "학원묵시록", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5245.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "ふぇいと/ぜろ", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3438.6, "error": null, "top_titles": ["Fetikano!", "Fechikano!", "ふぇちかの!", "gdgd Fairies", "Gudaguda Fairies", "Rambling Fairies", "Fairy Ngoo", "Fairy Gone Recaps"], "top_ids": [24453, 11809, 39708]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "來自深淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5389.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "강철의 연금술사", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9645.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "命运之零", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3263.8, "error": null, "top_titles": ["Wangzhe Rongyao: Rongyao Zhi Zhang - Mingyun Pian", "Honor of Kings: Chapter of Glory - Destiny Arc", "王者荣耀:荣耀之章 命运篇", "Ling Ba Xue Tang: Bei Chi Diao de Chengyu Xilie", "零捌学糖之被吃掉的成语系列", "Fantasy", "Yi Ci Guiling", "亿次归零"], "top_ids": [61592, 47322, 62795]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "assassination classroom second season", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 4948.3, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Ansatsu Kyoushitsu Season 2", "Ansatsu Kyoushitsu Final Season"], "top_ids": ["10877"]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Fullmetal Alchemist", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2620.9, "error": null, "top_titles": ["Fullmetal Alchemist", "Fullmetal Alchemist: The Sacred Star of Milos Specials", "Fullmetal Alchemist: Brotherhood Specials"], "top_ids": [121, 10842, 6421]} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "High School of the Dead", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 6904.7, "error": null, "top_titles": ["High School of the Dead", "Tetsuro Araki", "Yōsuke Kuroda"], "top_ids": ["11271"]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "命運之零", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3816.0, "error": null, "top_titles": ["Ling Ba Xue Tang: Bei Chi Diao de Chengyu Xilie", "零捌学糖之被吃掉的成语系列", "Fantasy", "Yi Ci Guiling", "亿次归零", "Asylum Entropy​​", "Ga-Rei: Zero", "Garei: Zero"], "top_ids": [47322, 62795, 4725]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "来自深渊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5991.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "やはり俺の青春ラブコメはまちがっている。", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 3932.6, "error": null, "top_titles": ["Yahari Ore no Seishun Love Comedy wa Machigatteiru.", "Oregairu", "My youth romantic comedy is wrong as I expected.", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku", "Oregairu 2", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan", "My Teen Romantic Comedy SNAFU 3\r\n", "Oregairu 3\r\n"], "top_ids": ["7169", "8478", "42194"]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "命運/零話", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2667.3, "error": null, "top_titles": ["X OVA", "X - Yochou", "X OVA: Episode 0", "Onaji Semi no Someya-san ga Sexy Joyuu datta Hanashi.", "同じゼミの染谷さんがセクシー女優だった話。", "My Classmate's a Sexy Actress, and Now We Live Together?!", "Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyougakari ga, Jitsu wa Sentou Igai ga SSS Rank Datta to Iu Yoku Aru Hanashi 2nd Season", "Kanchigai no Koubou Nushi"], "top_ids": [595, 63619, 62924]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "fullmetal alchemist", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2746.6, "error": null, "top_titles": ["Fullmetal Alchemist", "Fullmetal Alchemist: The Sacred Star of Milos Specials", "Fullmetal Alchemist: Brotherhood Specials"], "top_ids": [121, 10842, 6421]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "我的青春恋爱物语果然有问题", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4409.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "命运/零话", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5236.7, "error": null, "top_titles": ["Bu Bai Chi Hua Shanhai Jing 2nd Season", "不白吃话山海经 第二季", "Foodie Boy's Classic of Mountains & Seas 2nd Season", "The King of Fighters: Destiny", "KOF", "Quanhuang Mingyun", "Xiaoke de Huatu Xie Hua", "Kay-chan no Enikki"], "top_ids": [60900, 35204, 55072]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "我的青春戀愛物語果然有問題", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4566.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "페이트/제로", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 4032.6, "error": null, "top_titles": ["Stress Zero", "스트레스 제로", "Action", "Zero Sugar Saero CM", "제로 슈거 새로", "STUDIOK110"], "top_ids": [60915, 56525]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "메이드 인 어비스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 11562.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "果然我的青春戀愛喜劇搞錯了。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4688.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ノラガミ ARAGOTO", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12180.6, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Made in Abyss", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 2963.8, "error": null, "top_titles": ["Made in Abyss", "メイドインアビス", "Made in Abyss: Mezameru Shinpi", "メイドインアビス 目覚める神秘", "Made in Abyss: Retsujitsu no Ougonkyou", "Made in Abyss: The Golden City of the Scorching Sun", "メイドインアビス 烈日の黄金郷"], "top_ids": [97986, 160275, 114745]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "のらがみ ARAGOTO", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2056.6, "error": null, "top_titles": ["Mirai e no Tegami: Kono Michi no Tochuu kara", "Shimajirou to Mimirin no Nagare Hoshi Monogatari", "Takarasagashi no Natsuyasumi"], "top_ids": [35047, 53983, 38817]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Fate/Zero", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6545.0, "error": null, "top_titles": ["Fate/Zero", "フェイト/ゼロ", "Aniplex", "Fate/Zero 2nd Season", "Fate/Zero Second Season", "フェイト/ゼロ 2ndシーズン", "Fate/Zero Cafe", "Fate/Zero Café"], "top_ids": [10087, 11741, 19165]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "果然我的青春恋爱喜剧搞错了。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4123.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "野良神 ARAGOTO", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3815.1, "error": null, "top_titles": ["Norasco", "Norasco (Movie)", "Norasco Specials"], "top_ids": [24773, 34092, 34091]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "果然我的青春戀愛喜劇搞錯了。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3156.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 79, "mal_id": 8074, "popularity": 82, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "high school of the dead", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12347.2, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "made in abyss", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 3955.8, "error": null, "top_titles": ["Made in Abyss", "メイドインアビス", "Made in Abyss: Mezameru Shinpi", "メイドインアビス 目覚める神秘", "Made in Abyss: Retsujitsu no Ougonkyou", "Made in Abyss: The Golden City of the Scorching Sun", "メイドインアビス 烈日の黄金郷"], "top_ids": [97986, 160275, 114745]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "炎炎ノ消防隊", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 1620.7, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Force", "炎炎ノ消防隊", "Enen no Shouboutai: San no Shou", "Fire Force Season 3", "炎炎ノ消防隊 参ノ章", "Enen no Shouboutai: Ni no Shou", "Fire Force Season 2"], "top_ids": [105310, 149118, 114236]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "流浪神差II", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3469.7, "error": null, "top_titles": ["Weiqi Shaonian 2", "Shen Shou Jin Gang 2: Tianshen De Shou", "Zhan Shen: Fanchen Shenyu II"], "top_ids": [19839, 44393, 62234]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "fate zero", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6320.4, "error": null, "top_titles": ["Fate/Zero", "フェイト/ゼロ", "Aniplex", "Fate/Zero 2nd Season", "Fate/Zero Second Season", "フェイト/ゼロ 2ndシーズン", "Fate/Zero Cafe", "Fate/Zero Café"], "top_ids": [10087, 11741, 19165]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "フェイト/ゼロ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5995.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "流浪神差 ARAGOTO", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3629.2, "error": null, "top_titles": ["Rurouni Kenshin Special", "San Mao Liu Lang Ji (2006)", "Xiao Bei Liulang Ji"], "top_ids": [12067, 31691, 43961]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "果然我的青春恋爱喜剧搞错了。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6458.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "炎炎消防队", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5695.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "無職転生 ~異世界行ったら本気だす~", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3678.3, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", "無職転生 ~異世界行ったら本気だす~", "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", "無職転生 ~異世界行ったら本気だす~ 第2クール", "Mushoku Tensei: Jobless Reincarnation Part 2", "Mushoku Tensei: Isekai Ittara Honki Dasu - Eris no Goblin Toubatsu", "Mushoku Tensei: Jobless Reincarnation Special"], "top_ids": [39535, 45576, 50360]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "노라가미 ARAGOTO", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 2217.0, "error": null, "top_titles": ["Noragami Aragoto", "Nirvana", "Noragami Aragoto OVA"], "top_ids": [30503, 32468, 30885]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "역시 내 청춘 러브코메디는 잘못됐다.", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2012.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "炎炎消防隊", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 2359.6, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Force", "炎炎ノ消防隊", "Enen no Shouboutai Mini Anime", "炎炎ノ消防隊ミニアニメ", "Enen no Shouboutai: San no Shou", "Fire Force Season 3", "炎炎ノ消防隊 参ノ章"], "top_ids": [105310, 128390, 149118]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Noragami Aragoto", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 2337.7, "error": null, "top_titles": ["Noragami Aragoto", "Nirvana", "Noragami Aragoto OVA"], "top_ids": [30503, 32468, 30885]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "ふぇいと/ぜろ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6112.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "My Teen Romantic Comedy SNAFU", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 4413.1, "error": null, "top_titles": ["Yahari Ore no Seishun Love Comedy wa Machigatteiru.", "Oregairu", "My youth romantic comedy is wrong as I expected.", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku", "Oregairu 2", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan", "My Teen Romantic Comedy SNAFU 3\r\n", "Oregairu 3\r\n"], "top_ids": ["7169", "8478", "42194"]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "炎炎消防隊", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 2997.8, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Force", "炎炎ノ消防隊", "Enen no Shouboutai Mini Anime", "炎炎ノ消防隊ミニアニメ", "Enen no Shouboutai: San no Shou", "Fire Force Season 3", "炎炎ノ消防隊 参ノ章"], "top_ids": [105310, 128390, 149118]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "ja", "backend": "jikan", "variant": "enhance_jaconv_norm", "query": "無職転生 ー異世界行ったら本気だすー", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5209.9, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", "無職転生 ~異世界行ったら本気だす~", "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", "無職転生 ~異世界行ったら本気だす~ 第2クール", "Mushoku Tensei: Jobless Reincarnation Part 2", "Mushoku Tensei II: Isekai Ittara Honki Dasu", "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season"], "top_ids": [39535, 45576, 51179]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "en", "backend": "shikimori", "variant": "enhance_romaji_to_katakana", "query": "ノラガミ アラゴト", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 4, "duration_ms": 2874.6, "error": null, "top_titles": ["Noragami", "Noragami OVA", "Noragami Aragoto"], "top_ids": [20507, 20767, 30503]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "无职转生:到了异世界就拿出真本事", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2842.7, "error": null, "top_titles": ["Guimi Zhi Zhu: Wu Mian Ren", "Lord of Mysteries: Faceless Arc", "诡秘之主 无面人篇", "Tuer Ni Wudile Xiashan Qu Ba", "徒儿你无敌了下山去吧", "Return of the Invincible Heir"], "top_ids": [63632, 63632, 62786]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "命运之零", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4792.0, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "炎炎消防队", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5998.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "無職轉生:到了異世界就拿出真本事", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 3126.9, "error": null, "top_titles": ["Huhuan Shaonu Special: Xiang Zuo de Shi Daodi Shi Shenme", "Huhuan Shaonu Tebie Pian: Xiang Zuo de Shi Daodi Shi Shenme", "呼唤少女特别篇 想做的事到底是什么", "Hitorigoto", "他人り事", "Music", "Mushoku Tensei: Isekai Ittara Honki Dasu", "Jobless Reincarnation: I Will Seriously Try If I Go To Another World"], "top_ids": [63533, 63171, 39535]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "noragami aragoto", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 5237.7, "error": null, "top_titles": ["Noragami Aragoto", "Nirvana", "Noragami Aragoto OVA"], "top_ids": [30503, 32468, 30885]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "炎炎消防隊", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 2315.1, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Force", "炎炎ノ消防隊", "Enen no Shouboutai Mini Anime", "炎炎ノ消防隊ミニアニメ", "Enen no Shouboutai: San no Shou", "Fire Force Season 3", "炎炎ノ消防隊 参ノ章"], "top_ids": [105310, 128390, 149118]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "命運/零話", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4893.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "無職轉生~到了異世界就拿出真本事~", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 3440.5, "error": null, "top_titles": ["Amanee!: Tomodachinchi de Konna Koto ni Naru Nante!", "アマネェ! ~トモダチンチでこんな事になるなんて!~", "MILF Assault Mode", "Mouryou no Hako: Chuuzenji Atsuko no Jikenbo - Hako no Yurei no Koto", "Mouryou no Hako - Hako no Yuurei no Koto", "The Case Files of Atsuko Chuzenji: 'The Case of the Spirits in the Boxes'", "Mushoku Tensei: Isekai Ittara Honki Dasu", "Jobless Reincarnation: I Will Seriously Try If I Go To Another World"], "top_ids": [21069, 6736, 39535]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "炎炎消防队", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2551.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "文豪ストレイドッグス", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2754.4, "error": null, "top_titles": ["Bungou Stray Dogs 2nd Season", "Bungou Stray Dogs", "Bungou Stray Dogs 5th Season"], "top_ids": [32867, 31478, 54898]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "无职转生~到了异世界就拿出真本事~", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2570.3, "error": null, "top_titles": ["Guimi Zhi Zhu: Wu Mian Ren", "Lord of Mysteries: Faceless Arc", "诡秘之主 无面人篇", "Tuer Ni Wudile Xiashan Qu Ba", "徒儿你无敌了下山去吧", "Return of the Invincible Heir"], "top_ids": [63632, 63632, 62786]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "불꽃 소방대", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2928.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "文豪野犬", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2953.9, "error": null, "top_titles": ["Bungou Stray Dogs 2nd Season", "Bungou Stray Dogs", "Bungou Stray Dogs 5th Season"], "top_ids": [32867, 31478, 54898]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "페이트/제로", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5272.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "無職轉生,到了異世界就拿出真本事", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 3318.8, "error": null, "top_titles": ["Huhuan Shaonu Special: Xiang Zuo de Shi Daodi Shi Shenme", "Huhuan Shaonu Tebie Pian: Xiang Zuo de Shi Daodi Shi Shenme", "呼唤少女特别篇 想做的事到底是什么", "Hitorigoto", "他人り事", "Music", "Mushoku Tensei: Isekai Ittara Honki Dasu", "Jobless Reincarnation: I Will Seriously Try If I Go To Another World"], "top_ids": [63533, 63171, 39535]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Fire Force", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 2013.9, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Force", "炎炎ノ消防隊", "Enen no Shouboutai: San no Shou", "Fire Force Season 3", "炎炎ノ消防隊 参ノ章", "Enen no Shouboutai: Ni no Shou", "Fire Force Season 2"], "top_ids": [105310, 149118, 114236]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "my teen romantic comedy snafu", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12290.4, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "文豪Stray Dogs", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 3817.6, "error": null, "top_titles": ["Dogs: Bullets & Carnage", "Bungou Stray Dogs 2nd Season", "Bungou Stray Dogs"], "top_ids": [5593, 32867, 31478]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "无职转生,到了异世界就拿出真本事", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3457.4, "error": null, "top_titles": ["Guimi Zhi Zhu: Wu Mian Ren", "Lord of Mysteries: Faceless Arc", "诡秘之主 无面人篇", "Tuer Ni Wudile Xiashan Qu Ba", "徒儿你无敌了下山去吧", "Return of the Invincible Heir"], "top_ids": [63632, 63632, 62786]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "文豪Stray Dogs", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 2279.5, "error": null, "top_titles": ["Dogs: Bullets & Carnage", "Bungou Stray Dogs 2nd Season", "Bungou Stray Dogs"], "top_ids": [5593, 32867, 31478]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "fire force", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 3372.3, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Force", "炎炎ノ消防隊", "Enen no Shouboutai: San no Shou", "Fire Force Season 3", "炎炎ノ消防隊 参ノ章", "Enen no Shouboutai: Ni no Shou", "Fire Force Season 2"], "top_ids": [105310, 149118, 114236]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ハイキュー!! セカンドシーズン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 5562.0, "error": null, "top_titles": ["Haikyuu!! Second Season"], "top_ids": ["10076"]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Fate/Zero", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 3, "duration_ms": 8398.9, "error": null, "top_titles": ["Fate/Zero Café", "Hikaru Kondo", "Toshiyuki Shirai", "Fate/Zero", "Ei Aoki", "Kazuharu Sato"], "top_ids": ["17615", "14122", "12376"]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "무직전생 ~이세계에 갔으면 최선을 다한다~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4199.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ハイスクールD×D", "hit": true, "position": 0, "kind": "id", "n_returned": 9, "duration_ms": 3432.3, "error": null, "top_titles": ["High School DxD", "ハイスクールD×D", "High School DxD OVA", "ハイスクールD×D OVA", "High School DxD BorN", "ハイスクールD×D BorN"], "top_ids": [11617, 12729, 20745]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "はいきゅー!! せかんどしーずん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3244.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "排球少年 第二季", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2360.0, "error": null, "top_titles": ["Quanzhi Gaoshou 2nd Season", "Quan Zhi Gao Shou Season 2", "Full-Time Expert Season 2", "Xian Wang de Richang Shenghuo 2nd Season", "Shiguang Dailiren 2", "Link Click 2nd Season", "LINK CLICK II"], "top_ids": ["41358", "43795", "45504"]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Mushoku Tensei: Jobless Reincarnation", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4192.5, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", "無職転生 ~異世界行ったら本気だす~", "Mushoku Tensei II: Isekai Ittara Honki Dasu", "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season", "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2"], "top_ids": [39535, 51179, 55888]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "문호 스트레이 독스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8472.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "排球少年!!第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5645.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "mushoku tensei jobless reincarnation", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2673.5, "error": null, "top_titles": ["Mushoku Tensei: Isekai Ittara Honki Dasu", "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", "無職転生 ~異世界行ったら本気だす~", "Mushoku Tensei II: Isekai Ittara Honki Dasu", "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season", "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2"], "top_ids": [39535, 51179, 55888]} +{"sample_index": 80, "mal_id": 10087, "popularity": 83, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "fate zero", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4022.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "暗殺教室 第2期", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2783.8, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Ansatsu Kyoushitsu Season 2", "Ansatsu Kyoushitsu Final Season", "Kakuriyo no Yadomeshi Ni", "Kakuriyo: Bed and Breakfast for Spirits", "Kakuriyo -Bed & Breakfast for Spirits- 2", "Ansatsu Kyoushitsu", "暗殺教室"], "top_ids": [30654, 58772, 24833]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "無職転生 ~異世界行ったら本気だす~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2302.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Bungo Stray Dogs", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12167.5, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "ja", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "暗杀教室 第2期", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3692.4, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Ansatsu Kyoushitsu Season 2", "Ansatsu Kyoushitsu Final Season", "Kakuriyo no Yadomeshi Ni", "Kakuriyo: Bed and Breakfast for Spirits", "Kakuriyo -Bed & Breakfast for Spirits- 2", "Teekyuu 2", "Tekyuu 2"], "top_ids": [30654, 58772, 18121]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "ja", "backend": "ann", "variant": "enhance_jaconv_norm", "query": "無職転生 ー異世界行ったら本気だすー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2311.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "无职转生:到了异世界就拿出真本事", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2835.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "하이큐!! 세컨드 시즌", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12253.6, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "はいすくーるD×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 22408.2, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "無職轉生~到了異世界就拿出真本事~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3648.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "暗杀教室 第二季", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 6808.7, "error": null, "top_titles": ["Jian Lai 2nd Season", "The Swords 2nd Season", "Sword of Coming 2nd Season", "Zhege Nianji Huan Neng Dang Daxia Ma 2nd Season", "这个年纪还能当大侠吗 第二季", "Painting Dream", "Da Zhuzai: Nian Fan 2", "The Great Ruler 2nd Season"], "top_ids": [62728, 61948, 61556]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "恶魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1914.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "暗殺教室 第二季", "hit": true, "position": 8, "kind": "id", "n_returned": 10, "duration_ms": 3708.6, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "暗殺教室", "Assassination Classroom", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special", "Jian Lai 2nd Season", "The Swords 2nd Season", "Sword of Coming 2nd Season"], "top_ids": [24833, 19759, 62728]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "惡魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3056.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "暗殺教室 第二季", "hit": true, "position": 8, "kind": "id", "n_returned": 10, "duration_ms": 3712.4, "error": null, "top_titles": ["Ansatsu Kyoushitsu", "暗殺教室", "Assassination Classroom", "Ansatsu Kyoushitsu: Jump Festa 2013 Special", "Ansatsu Kyoushitsu Jump Super Anime Tour Special", "Jian Lai 2nd Season", "The Swords 2nd Season", "Sword of Coming 2nd Season"], "top_ids": [24833, 19759, 62728]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "無職轉生,到了異世界就拿出真本事", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8881.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Haikyu!! 2nd Season", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12297.1, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "惡魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5493.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "bungo stray dogs", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5217.7, "error": null, "top_titles": ["Bungou Stray Dogs", "Bungou Stray Dogs Wan!", "Bungou Stray Dogs: Hitori Ayumu"], "top_ids": [31478, 42250, 33071]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "恶魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2745.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "メイドインアビス", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 7, "duration_ms": 2209.5, "error": null, "top_titles": ["Made in Abyss", "Made in Abyss: Retsujitsu no Ougonkyou", "Made in Abyss: Retsujitsu no Ougonkyou - Papa to Issho"], "top_ids": [34599, 41084, 52149]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "暗杀教室 第二季", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 6210.8, "error": null, "top_titles": ["Jian Lai 2nd Season", "The Swords 2nd Season", "Sword of Coming 2nd Season", "Zhege Nianji Huan Neng Dang Daxia Ma 2nd Season", "这个年纪还能当大侠吗 第二季", "Painting Dream", "Da Zhuzai: Nian Fan 2", "The Great Ruler 2nd Season"], "top_ids": [62728, 61948, 61556]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "무직전생 ~이세계에 갔으면 최선을 다한다~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6266.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "めいどいんあびす", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2228.0, "error": null, "top_titles": ["Iii Icecrin Double", "Ai Ai Ai Ai♡Ai Love You", "Kiminari Dousuru? Yuukai Itazura: Sarenai Tame ni"], "top_ids": [51839, 63300, 30976]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "惡魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3409.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "恶魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1585.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "haikyu 2nd season", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2760.3, "error": null, "top_titles": ["Haikyuu!! Second Season"], "top_ids": ["10076"]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "암살교실 2기", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5385.2, "error": null, "top_titles": ["Athlon Tobot 2", "Athlon Tobot 2nd Season", "애슬론 또봇 2기", "Bubble Bubble Cook 2nd Season", "보글보글 쿡 2기", "Studio Vandal", "Dudadakung 2nd Season", "두다다쿵 2기"], "top_ids": [52737, 55078, 48170]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "来自深渊", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3741.0, "error": null, "top_titles": ["Shenyuan Youxi", "Zi Heian Zhong Zou Lai", "Ba Ma Laizi Er Ciyuan"], "top_ids": [57513, 61646, 44072]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "進撃の巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 2320.1, "error": null, "top_titles": ["Attack on Titan: The Final Season Part 2", "Shingeki no Kyojin Season 4 Part 2", "Attack on Titan Season 4 Part 2", "Attack on Titan: The Final Season - Final Chapters Part 2", "Attack on Titan Season 4 Part 4, Attack on Titan Season 4 - Final Edition (Part 2), Attack on Titan: The Final Season - Final Edition (Part 2)", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2", "Attack on Titan Season 3 Part 2"], "top_ids": ["44240", "47132", "41982"]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "하이스쿨 DxD", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3243.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Assassination Classroom Second Season", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4350.5, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Ansatsu Kyoushitsu Season 2", "Ansatsu Kyoushitsu Final Season", "Ansatsu Kyoushitsu", "暗殺教室", "Assassination Classroom", "Ansatsu Kyoushitsu: Deai no Jikan", "Ansatsu Kyoushitsu Episode 0: Deai no Jikan"], "top_ids": [30654, 24833, 28405]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "來自深淵", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5541.4, "error": null, "top_titles": ["Mouretsu Pirates: Abyss of Hyperspace", "5-toubun no Princess: Gensou to Shinen to Mahou Gakuin", "Zi Zuo Zi Shou"], "top_ids": [14817, 64106, 43818]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "进击的巨人 最终季 Part.2", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 4215.4, "error": null, "top_titles": ["SPY x FAMILY Part 2", "SxF", "Spy x Family", "Kizumonogatari II: Nekketsu-hen", "Koyomi Vamp", "Kizumonogatari Part 2", "Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", "Gate: Thus the JSDF Fought There! Fire Dragon Arc"], "top_ids": ["45619", "11406", "11376"]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "進擊的巨人 最終季 Part.2", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 10, "duration_ms": 2277.6, "error": null, "top_titles": ["SPY x FAMILY Part 2", "SxF", "Spy x Family", "Kizumonogatari II: Nekketsu-hen", "Koyomi Vamp", "Kizumonogatari Part 2", "Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", "Gate: Thus the JSDF Fought There! Fire Dragon Arc"], "top_ids": ["45619", "11406", "11376"]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "High School DxD", "hit": true, "position": 0, "kind": "id", "n_returned": 9, "duration_ms": 5856.5, "error": null, "top_titles": ["High School DxD", "ハイスクールD×D", "High School DxD NEW", "ハイスクールD×D NEW", "High School DxD OVA", "ハイスクールD×D OVA"], "top_ids": [11617, 15451, 12729]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "來自深淵", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2604.3, "error": null, "top_titles": ["Mouretsu Pirates: Abyss of Hyperspace", "5-toubun no Princess: Gensou to Shinen to Mahou Gakuin", "Zi Zuo Zi Shou"], "top_ids": [14817, 64106, 43818]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Mushoku Tensei: Jobless Reincarnation", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 7, "duration_ms": 14000.0, "error": null, "top_titles": ["Mushoku Tensei: Jobless Reincarnation III", "Ryōsuke Shibuya", "Naoto Taniuchi", "Mushoku Tensei: Jobless Reincarnation II - Guardian Fitz", "Hiroki Hirano", "Toshiya Ono", "Mushoku Tensei: Jobless Reincarnation II"], "top_ids": ["32859", "29147", "28953"]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "進擊的巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3427.1, "error": null, "top_titles": ["Attack on Titan: The Final Season Part 2", "Shingeki no Kyojin Season 4 Part 2", "Attack on Titan Season 4 Part 2", "25-pun de Oitsukeru: Shingeki no Kyojin", "Catch up in 25 minutes! Anime \"Attack on Titan\" Digest", "Attack on Titan: The Final Season - Final Chapters Part 2", "Attack on Titan Season 4 Part 4, Attack on Titan Season 4 - Final Edition (Part 2), Attack on Titan: The Final Season - Final Edition (Part 2)", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2"], "top_ids": ["44240", "47259", "47132"]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "assassination classroom second season", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4019.7, "error": null, "top_titles": ["Ansatsu Kyoushitsu 2nd Season", "Ansatsu Kyoushitsu Season 2", "Ansatsu Kyoushitsu Final Season", "Ansatsu Kyoushitsu", "暗殺教室", "Assassination Classroom", "Ansatsu Kyoushitsu: Deai no Jikan", "Ansatsu Kyoushitsu Episode 0: Deai no Jikan"], "top_ids": [30654, 24833, 28405]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "进击的巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4319.4, "error": null, "top_titles": ["Attack on Titan: The Final Season Part 2", "Shingeki no Kyojin Season 4 Part 2", "Attack on Titan Season 4 Part 2", "25-pun de Oitsukeru: Shingeki no Kyojin", "Catch up in 25 minutes! Anime \"Attack on Titan\" Digest", "Attack on Titan: The Final Season - Final Chapters Part 2", "Attack on Titan Season 4 Part 4, Attack on Titan Season 4 - Final Edition (Part 2), Attack on Titan: The Final Season - Final Edition (Part 2)", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2"], "top_ids": ["44240", "47259", "47132"]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "来自深渊", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 7906.2, "error": null, "top_titles": ["Shenyuan Youxi", "Zi Heian Zhong Zou Lai", "Ba Ma Laizi Er Ciyuan"], "top_ids": [57513, 61646, 44072]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "來自深淵", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2592.5, "error": null, "top_titles": ["Mouretsu Pirates: Abyss of Hyperspace", "5-toubun no Princess: Gensou to Shinen to Mahou Gakuin", "Zi Zuo Zi Shou"], "top_ids": [14817, 64106, 43818]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "やはり俺の青春ラブコメはまちがっている。", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7724.2, "error": null, "top_titles": ["Yahari Ore no Seishun Love Comedy wa Machigatteiru.", "Oregairu", "My youth romantic comedy is wrong as I expected.", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku", "Oregairu 2", "My Teen Romantic Comedy SNAFU 2", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. 3rd Season"], "top_ids": [14813, 23847, 39547]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "進擊的巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4032.9, "error": null, "top_titles": ["Attack on Titan: The Final Season Part 2", "Shingeki no Kyojin Season 4 Part 2", "Attack on Titan Season 4 Part 2", "25-pun de Oitsukeru: Shingeki no Kyojin", "Catch up in 25 minutes! Anime \"Attack on Titan\" Digest", "Attack on Titan: The Final Season - Final Chapters Part 2", "Attack on Titan Season 4 Part 4, Attack on Titan Season 4 - Final Edition (Part 2), Attack on Titan: The Final Season - Final Edition (Part 2)", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2"], "top_ids": ["44240", "47259", "47132"]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "来自深渊", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2405.2, "error": null, "top_titles": ["Shenyuan Youxi", "Zi Heian Zhong Zou Lai", "Ba Ma Laizi Er Ciyuan"], "top_ids": [57513, 61646, 44072]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "high school dxd", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12282.1, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "进击的巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2832.1, "error": null, "top_titles": ["Attack on Titan: The Final Season Part 2", "Shingeki no Kyojin Season 4 Part 2", "Attack on Titan Season 4 Part 2", "25-pun de Oitsukeru: Shingeki no Kyojin", "Catch up in 25 minutes! Anime \"Attack on Titan\" Digest", "Attack on Titan: The Final Season - Final Chapters Part 2", "Attack on Titan Season 4 Part 4, Attack on Titan Season 4 - Final Edition (Part 2), Attack on Titan: The Final Season - Final Edition (Part 2)", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2"], "top_ids": ["44240", "47259", "47132"]} +{"sample_index": 81, "mal_id": 39535, "popularity": 84, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "mushoku tensei jobless reincarnation", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4429.7, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "메이드 인 어비스", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2842.9, "error": null, "top_titles": ["In:App", "Meogneun Insaeng PV", "Hero Inside 2"], "top_ids": [56902, 52911, 60910]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 1991.9, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", "Kaguya-sama: Love is War?", "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", "Kaguya-sama: Love is War", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen OVA", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~OVA"], "top_ids": [112641, 101921, 125368]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "我的青春恋爱物语果然有问题", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5824.2, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "진격의 거인: 파이널 시즌 파트 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2832.8, "error": null, "top_titles": ["DinoCore Evolution Part 2"], "top_ids": ["48806"]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "ja", "backend": "anilist", "variant": "enhance_jaconv_norm", "query": "かぐや様は告らせたい?ー天才たちの恋愛頭脳戦ー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3147.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Attack on Titan: Final Season Part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 3520.8, "error": null, "top_titles": ["Attack on Titan: The Final Season Part 2", "Shingeki no Kyojin Season 4 Part 2", "Attack on Titan Season 4 Part 2", "Attack on Titan: The Final Season - Final Chapters Part 2", "Attack on Titan Season 4 Part 4, Attack on Titan Season 4 - Final Edition (Part 2), Attack on Titan: The Final Season - Final Edition (Part 2)", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2", "Attack on Titan Season 3 Part 2"], "top_ids": ["44240", "47132", "41982"]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "我的青春戀愛物語果然有問題", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4301.1, "error": null, "top_titles": ["Wo De Nazha Yu Bianxing Jingang", "Transformers: Nezha", "我的哪吒与变形金刚", "Wo de Tian Jie Nu You", "Wo de Tian Jie Nuyou", "Wo de Tian Jie Nu you", "Wo de Ni Tian Shen Qi", "Wo De Nitian Shenqi"], "top_ids": [63093, 36455, 37564]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "辉夜大小姐想让我告白?~天才们的恋爱头脑战~", "hit": true, "position": 2, "kind": "id", "n_returned": 3, "duration_ms": 3318.0, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", "Kaguya-sama: Love is War", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai: Ultra Romantic", "Kaguya-sama: Love is War -Ultra Romantic-", "かぐや様は告らせたい-ウルトラロマンティック-", "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", "Kaguya-sama: Love is War?"], "top_ids": [101921, 125367, 112641]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "暗殺教室 第2期", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9226.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "輝夜大小姐想讓我告白?~天才們的戀愛頭腦戰~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3525.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "果然我的青春戀愛喜劇搞錯了。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4840.8, "error": null, "top_titles": ["Sansan de Shenghuo Guoran You Wenti", "三三的生活果然有问题", "Slice of Life", "Guoran Yi Ting", "果然一町", "Happy Fruit Village", "Onaji Semi no Someya-san ga Sexy Joyuu datta Hanashi.", "同じゼミの染谷さんがセクシー女優だった話。"], "top_ids": [55133, 46467, 63619]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan final season part 2", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 2595.8, "error": null, "top_titles": ["Attack on Titan: The Final Season Part 2", "Shingeki no Kyojin Season 4 Part 2", "Attack on Titan Season 4 Part 2", "Attack on Titan: The Final Season - Final Chapters Part 2", "Attack on Titan Season 4 Part 4, Attack on Titan Season 4 - Final Edition (Part 2), Attack on Titan: The Final Season - Final Edition (Part 2)", "Attack on Titan Final Season THE FINAL CHAPTERS Special 2", "Attack on Titan Season 3 Part 2"], "top_ids": ["44240", "47132", "41982"]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Made in Abyss", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12275.1, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "果然我的青春恋爱喜剧搞错了。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4049.1, "error": null, "top_titles": ["Sansan de Shenghuo Guoran You Wenti", "三三的生活果然有问题", "Slice of Life", "Guoran Yi Ting", "果然一町", "Happy Fruit Village", "Onaji Semi no Someya-san ga Sexy Joyuu datta Hanashi.", "同じゼミの染谷さんがセクシー女優だった話。"], "top_ids": [55133, 46467, 63619]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "暗杀教室 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8319.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "暗殺教室 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1925.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "鋼の錬金術師", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 9604.7, "error": null, "top_titles": ["Fullmetal Alchemist", "FMA", "Full Metal Alchemist", "Fullmetal Alchemist: Brotherhood Specials", "Moumoku no Renkinjutsushi", "The Blind Alchemist", "Fullmetal Alchemist: Reflections", "FMA: Reflections"], "top_ids": ["100", "4555", "609"]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "made in abyss", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5881.5, "error": null, "top_titles": ["Made in Abyss", "Made in Abyss: Retsujitsu no Ougonkyou", "Made in Abyss: Mezameru Shinpi"], "top_ids": [34599, 41084, 54250]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12285.7, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "钢之炼金术师", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2299.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "炎炎ノ消防隊", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2604.4, "error": null, "top_titles": ["Enen no Shouboutai", "Enen no Shouboutai: Ni no Shou", "Enen no Shouboutai: San no Shou"], "top_ids": [38671, 40956, 51818]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "果然我的青春戀愛喜劇搞錯了。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 9865.7, "error": null, "top_titles": ["Sansan de Shenghuo Guoran You Wenti", "三三的生活果然有问题", "Slice of Life", "Guoran Yi Ting", "果然一町", "Happy Fruit Village", "Onaji Semi no Someya-san ga Sexy Joyuu datta Hanashi.", "同じゼミの染谷さんがセクシー女優だった話。"], "top_ids": [55133, 46467, 63619]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "辉夜姬想让人告白?~天才们的恋爱头脑战~", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3446.3, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", "Kaguya-sama: Love is War", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~"], "top_ids": [101921]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "果然我的青春恋爱喜剧搞错了。", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2464.3, "error": null, "top_titles": ["Sansan de Shenghuo Guoran You Wenti", "三三的生活果然有问题", "Slice of Life", "Guoran Yi Ting", "果然一町", "Happy Fruit Village", "Onaji Semi no Someya-san ga Sexy Joyuu datta Hanashi.", "同じゼミの染谷さんがセクシー女優だった話。"], "top_ids": [55133, 46467, 63619]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "암살교실 2기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8109.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "鋼之鍊金術師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4044.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2218.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "炎炎消防队", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4126.4, "error": null, "top_titles": ["Enen no Shouboutai", "Enen no Shouboutai Mini Anime", "Enen no Shouboutai: Ni no Shou"], "top_ids": [38671, 45999, 40956]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Assassination Classroom Second Season", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1890.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "역시 내 청춘 러브코메디는 잘못됐다.", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3687.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "炎炎消防隊", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2313.1, "error": null, "top_titles": ["Enen no Shouboutai", "Enen no Shouboutai Mini Anime", "Enen no Shouboutai: Ni no Shou"], "top_ids": [38671, 45999, 40956]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "My Teen Romantic Comedy SNAFU", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2496.6, "error": null, "top_titles": ["Yahari Ore no Seishun Love Comedy wa Machigatteiru.", "Oregairu", "My youth romantic comedy is wrong as I expected.", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku", "Oregairu 2", "My Teen Romantic Comedy SNAFU 2", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. 3rd Season"], "top_ids": [14813, 23847, 39547]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "炎炎消防隊", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2430.4, "error": null, "top_titles": ["Enen no Shouboutai", "Enen no Shouboutai Mini Anime", "Enen no Shouboutai: Ni no Shou"], "top_ids": [38671, 45999, 40956]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "鋼之鍊金術師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7791.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "炎炎消防队", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2722.9, "error": null, "top_titles": ["Enen no Shouboutai", "Enen no Shouboutai Mini Anime", "Enen no Shouboutai: Ni no Shou"], "top_ids": [38671, 45999, 40956]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "炎炎消防隊", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2620.9, "error": null, "top_titles": ["Enen no Shouboutai", "Enen no Shouboutai Mini Anime", "Enen no Shouboutai: Ni no Shou"], "top_ids": [38671, 45999, 40956]} +{"sample_index": 82, "mal_id": 30654, "popularity": 86, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "assassination classroom second season", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4971.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "辉夜姬想让人告白?~天才们的恋爱头脑战~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12273.0, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "炎炎消防队", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2393.6, "error": null, "top_titles": ["Enen no Shouboutai", "Enen no Shouboutai Mini Anime", "Enen no Shouboutai: Ni no Shou"], "top_ids": [38671, 45999, 40956]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "my teen romantic comedy snafu", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6079.6, "error": null, "top_titles": ["Yahari Ore no Seishun Love Comedy wa Machigatteiru.", "Oregairu", "My youth romantic comedy is wrong as I expected.", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku", "Oregairu 2", "My Teen Romantic Comedy SNAFU 2", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan", "Yahari Ore no Seishun Love Comedy wa Machigatteiru. 3rd Season"], "top_ids": [14813, 23847, 39547]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "钢之炼金术师", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7503.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "불꽃 소방대", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 2448.0, "error": null, "top_titles": ["Power Battle Watch Car: Minicar Battle League - Bulkkoch-ui Jilju", "Steel Fire Brigade Fire Robo"], "top_ids": [38613, 48333]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "카구야 님은 고백받고 싶어 2기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3374.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ハイキュー!! セカンドシーズン", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3019.2, "error": null, "top_titles": ["Haikyuu!! Second Season", "ハイキュー!! セカンドシーズン", "Haikyu!! 2nd Season", "Haikyuu!!", "High Kyuu!!", "HQ!!", "Haikyuu!! (OVA)", "Haikyuu!! Puppet Animation"], "top_ids": [28891, 20583, 40372]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "鋼之鍊金術師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2717.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Kaguya-sama: Love is War?", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 3581.6, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", "Kaguya-sama: Love is War?", "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", "Kaguya-sama: Love is War", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen OVA", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~OVA"], "top_ids": [112641, 101921, 125368]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "钢之炼金术师", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2413.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Fire Force", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4364.9, "error": null, "top_titles": ["Enen no Shouboutai", "DNA Sights 999.9", "Enen no Shouboutai: Ni no Shou"], "top_ids": [38671, 2019, 40956]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "はいきゅー!! せかんどしーずん", "hit": true, "position": 2, "kind": "title_substring", "n_returned": 10, "duration_ms": 3529.0, "error": null, "top_titles": ["Aisanai to Iwaremashitemo: Moto Maou no Hakushaku Reijou wa Kimajime Gunjin ni Ezuke wo Sarete Shiawase ni Naru", "Dinners with My Darling: How the Former Monster King Ate Her Way to Happiness", "愛さないといわれましても ~元魔王の伯爵令嬢は生真面目軍人に餌付けをされて幸せになる~", "Heart Mark Oome", "はーとまーく多め.", "Lune-Pictures", "Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta 2nd Season", "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~ 第2期"], "top_ids": [64091, 63846, 63822]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "강철의 연금술사", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1929.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "やはり俺の青春ラブコメはまちがっている。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 10626.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "排球少年 第二季", "hit": true, "position": 2, "kind": "title_substring", "n_returned": 10, "duration_ms": 2801.1, "error": null, "top_titles": ["Shaonian Jinyiwei 2nd Season", "少年锦衣卫 第二季", "The Young Imperial Guards 2nd Season", "Shaonian Jinyiwei 2nd Season: Xuzhang", "少年锦衣卫 第二季序章", "The Young Imperial Guards 2nd Season Prologue", "Shaonian Bai Ma Zui Chunfeng 2", "Shaonian Bai Ma Zui Chunfeng 2nd Season"], "top_ids": [37152, 52182, 59246]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "我的青春恋爱物语果然有问题", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2262.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "排球少年!!第二季", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 10, "duration_ms": 3367.3, "error": null, "top_titles": ["Zhandouban Geji! 2nd Season", "ReVdol! Second Season", "Virtual Idols Next to You! Second Season", "Wangzhe? Bie Nao! 2nd Season Fanwai", "Wangzhe? Bie Nao! 2nd Season Extra", "王者?别闹!第二季 番外", "Wangzhe? Bie Nao! 2nd Season", "王者?别闹!第二季"], "top_ids": [48851, 53593, 47394]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "fire force", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4691.5, "error": null, "top_titles": ["Enen no Shouboutai", "DNA Sights 999.9", "Enen no Shouboutai: Ni no Shou"], "top_ids": [38671, 2019, 40956]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Fullmetal Alchemist", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5851.9, "error": null, "top_titles": ["Fullmetal Alchemist", "FMA", "Full Metal Alchemist", "Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi (2009)", "Fullmetal Alchemist (2009)", "Fullmetal Alchemist: Brotherhood Specials", "Moumoku no Renkinjutsushi"], "top_ids": ["100", "3936", "4555"]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "하이큐!! 세컨드 시즌", "hit": true, "position": 4, "kind": "title_substring", "n_returned": 10, "duration_ms": 3098.0, "error": null, "top_titles": ["Tobot: Daedosiui Yeongungdeul Season 3 Part 2", "또봇 : 대도시의 영웅들 시즌3 파트 2", "Sci-Fi", "Tobot: Daedosiui Yeongungdeul Season 3", "또봇 : 대도시의 영웅들 시즌3", "Tobot: Daedosiui Yeongungdeul Season 2 Part 3", "또봇 : 대도시의 영웅들 시즌2 파트 3"], "top_ids": [62456, 62455, 62454]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ハイスクールD×D", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2717.0, "error": null, "top_titles": ["High School DxD", "Dead Dead Demons Dededede Destruction", "Dead Dead Demons Dededede Destruction (ONA)"], "top_ids": [11617, 51358, 58883]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "はいすくーるD×D", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2745.6, "error": null, "top_titles": ["High School Jingi", "Kore wa Zombie desu ka? of the Dead: Hai, Minotake ni Attemasu", "Tabisuru Nuigurumi: Traveling Daru"], "top_ids": [24089, 15437, 15077]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Haikyu!! 2nd Season", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3480.3, "error": null, "top_titles": ["Haikyuu!! Second Season", "ハイキュー!! セカンドシーズン", "Haikyu!! 2nd Season", "Haikyuu!! To the Top Part 2", "Haikyu!! TO THE TOP 2nd-cour", "Haikyu!! TO THE TOP Part 2", "Haikyuu!!", "High Kyuu!!"], "top_ids": [28891, 40776, 20583]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "恶魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5590.7, "error": null, "top_titles": ["Dead Dead Demons Dededede Destruction", "Dead Dead Demons Dededede Destruction (ONA)", "Dead Dead Demons Dededede Destruction 3DCG Animation"], "top_ids": [51358, 58883, 52005]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "haikyu 2nd season", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3131.0, "error": null, "top_titles": ["Haikyuu!! Second Season", "ハイキュー!! セカンドシーズン", "Haikyu!! 2nd Season", "Haikyuu!! To the Top Part 2", "Haikyu!! TO THE TOP 2nd-cour", "Haikyu!! TO THE TOP Part 2", "Haikyuu!!", "High Kyuu!!"], "top_ids": [28891, 40776, 20583]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "果然我的青春戀愛喜劇搞錯了。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 15333.3, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "kaguya sama love is war", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14072.6, "error": "ConnectionError: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out.", "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "化物語", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 1574.7, "error": null, "top_titles": ["Bakemonogatari", "化物語", "Bakemonogatari PV", "化物語 PV"], "top_ids": [5081, 143663]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "fullmetal alchemist", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3553.5, "error": null, "top_titles": ["Fullmetal Alchemist", "FMA", "Full Metal Alchemist", "Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi (2009)", "Fullmetal Alchemist (2009)", "Fullmetal Alchemist: Brotherhood Specials", "Moumoku no Renkinjutsushi"], "top_ids": ["100", "3936", "4555"]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "進撃の巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3756.7, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin Season 4", "Attack on Titan Season 4", "Shingeki no Kyojin: The Final Season - Kanketsu-hen", "Shingeki no Kyojin: The Final Season Part 3", "Shingeki no Kyojin: The Final Season"], "top_ids": [48583, 51535, 40028]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "ja", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "化物语", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2723.8, "error": null, "top_titles": ["Bakemonogatari", "化物語"], "top_ids": [5081]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "果然我的青春戀愛喜劇搞錯了。", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5854.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "进击的巨人 最终季 Part.2", "hit": true, "position": 6, "kind": "id", "n_returned": 10, "duration_ms": 3354.0, "error": null, "top_titles": ["Jinji de Ji Jia: Sheng Jie Fei Tuo", "进击的机甲之圣戒飞陀", "Mecha", "Fei Ren Zai 3rd Season Part 2", "Non-human 3rd Season Part 2", "Fei Ren Zai 3 Part 2", "Jian Wang 3: Xia Gan Yi Dan Shen Jianxin 3rd Season Part 2", "JX3: Chivalrous Hero Shen Jianxin 3rd Season Part 2"], "top_ids": [47063, 63788, 53206]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ノラガミ ARAGOTO", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 3775.3, "error": null, "top_titles": ["Noragami Aragoto", "Noragami Aragoto OVA", "Noragami Aragoto OAD"], "top_ids": ["10800", "11243"]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "化物语", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2075.5, "error": null, "top_titles": ["Bakemonogatari", "化物語"], "top_ids": [5081]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "化物語", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 1379.4, "error": null, "top_titles": ["Bakemonogatari", "化物語", "Bakemonogatari PV", "化物語 PV"], "top_ids": [5081, 143663]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "進擊的巨人 最終季 Part.2", "hit": true, "position": 5, "kind": "id", "n_returned": 10, "duration_ms": 3253.3, "error": null, "top_titles": ["Fei Ren Zai 3rd Season Part 2", "Non-human 3rd Season Part 2", "Fei Ren Zai 3 Part 2", "Jian Wang 3: Xia Gan Yi Dan Shen Jianxin 3rd Season Part 2", "JX3: Chivalrous Hero Shen Jianxin 3rd Season Part 2", "剑网3·侠肝义胆沈剑心 第三季 下部", "Ling Long: Incarnation Part 2", "Ling Cage: Incarnation Part 2"], "top_ids": [63788, 53206, 42290]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "역시 내 청춘 러브코메디는 잘못됐다.", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4677.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "のらがみ ARAGOTO", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 4485.2, "error": null, "top_titles": ["Noramimi", "Nora Mimi"], "top_ids": ["3065"]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "惡魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13350.3, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "化物語", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 4657.5, "error": null, "top_titles": ["Bakemonogatari", "化物語", "Bakemonogatari PV", "化物語 PV"], "top_ids": [5081, 143663]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "野良神 ARAGOTO", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 2712.1, "error": null, "top_titles": ["Noragami Aragoto", "Noragami Aragoto OVA", "Noragami Aragoto OAD", "Nirvana", "Nirubana", "Noragami Aragoto ED"], "top_ids": ["10800", "11243", "11791"]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "惡魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2170.3, "error": null, "top_titles": ["Dead Dead Demons Dededede Destruction", "Dead Dead Demons Dededede Destruction (ONA)", "Dead Dead Demons Dededede Destruction 3DCG Animation"], "top_ids": [51358, 58883, 52005]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "化物语", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 1746.4, "error": null, "top_titles": ["Bakemonogatari", "化物語"], "top_ids": [5081]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "流浪神差II", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2344.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "進擊的巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6833.6, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin Season 4", "Attack on Titan Season 4", "Beastars Final Season Part 2", "BEASTARS (新章)", "Orange", "Kusuriya no Hitorigoto 3rd Season Part 2", "The Pharmacist's Monologue"], "top_ids": [48583, 61114, 62841]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "流浪神差 ARAGOTO", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3978.8, "error": null, "top_titles": ["Noragami Aragoto", "Noragami Aragoto OVA", "Noragami Aragoto OAD", "Nirvana", "Nirubana", "Noragami Aragoto ED"], "top_ids": ["10800", "11243", "11791"]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "노라가미 ARAGOTO", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 1639.8, "error": null, "top_titles": ["Noragami Aragoto", "Noragami Aragoto OVA", "Noragami Aragoto OAD", "Nirvana", "Nirubana", "Noragami Aragoto ED"], "top_ids": ["10800", "11243", "11791"]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "进击的巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 8509.7, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin Season 4", "Attack on Titan Season 4", "Beastars Final Season Part 2", "BEASTARS (新章)", "Orange", "Jinji de Ji Jia: Sheng Jie Fei Tuo", "进击的机甲之圣戒飞陀"], "top_ids": [48583, 61114, 47063]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "My Teen Romantic Comedy SNAFU", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 16145.3, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "괴물 이야기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12219.9, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Noragami Aragoto", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 5916.7, "error": null, "top_titles": ["Noragami Aragoto", "Noragami Aragoto OVA", "Noragami Aragoto OAD", "Nirvana", "Nirubana", "Noragami Aragoto ED"], "top_ids": ["10800", "11243", "11791"]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "進擊的巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2923.0, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin Season 4", "Attack on Titan Season 4", "Beastars Final Season Part 2", "BEASTARS (新章)", "Orange", "Kusuriya no Hitorigoto 3rd Season Part 2", "The Pharmacist's Monologue"], "top_ids": [48583, 61114, 62841]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "恶魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 14944.6, "error": null, "top_titles": ["Dead Dead Demons Dededede Destruction", "Dead Dead Demons Dededede Destruction (ONA)", "Dead Dead Demons Dededede Destruction 3DCG Animation"], "top_ids": [51358, 58883, 52005]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "进击的巨人 The Final Season Part 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4403.2, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin Season 4", "Attack on Titan Season 4", "Beastars Final Season Part 2", "BEASTARS (新章)", "Orange", "Jinji de Ji Jia: Sheng Jie Fei Tuo", "进击的机甲之圣戒飞陀"], "top_ids": [48583, 61114, 47063]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Bakemonogatari", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 5441.1, "error": null, "top_titles": ["Bakemonogatari", "化物語", "Bakemonogatari PV", "化物語 PV"], "top_ids": [5081, 143663]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "en", "backend": "anilist", "variant": "enhance_romaji_to_katakana", "query": "バケモノガタリ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5246.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "惡魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 10661.8, "error": null, "top_titles": ["Dead Dead Demons Dededede Destruction", "Dead Dead Demons Dededede Destruction (ONA)", "Dead Dead Demons Dededede Destruction 3DCG Animation"], "top_ids": [51358, 58883, 52005]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "en", "backend": "kitsu", "variant": "enhance_romaji_to_katakana", "query": "ノラガミ アラゴト", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 4, "duration_ms": 9139.4, "error": null, "top_titles": ["Noragami", "Stray God", "Noragami Aragoto", "Noragami Aragoto OVA", "Noragami Aragoto OAD"], "top_ids": ["7881", "10800", "11243"]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "noragami aragoto", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3635.6, "error": null, "top_titles": ["Noragami Aragoto", "Noragami Aragoto OVA", "Noragami Aragoto OAD", "Nirvana", "Nirubana", "Noragami Aragoto ED"], "top_ids": ["10800", "11243", "11791"]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "恶魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6780.6, "error": null, "top_titles": ["Dead Dead Demons Dededede Destruction", "Dead Dead Demons Dededede Destruction (ONA)", "Dead Dead Demons Dededede Destruction 3DCG Animation"], "top_ids": [51358, 58883, 52005]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "진격의 거인: 파이널 시즌 파트 2", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 14521.9, "error": null, "top_titles": ["Tobot: Daedosiui Yeongungdeul Season 2 Part 3", "또봇 : 대도시의 영웅들 시즌2 파트 3", "Sci-Fi", "Tobot: Daedosiui Yeongungdeul Season 2 Part 2", "또봇 : 대도시의 영웅들 시즌2 파트 2", "Tobot: Daedosiui Yeongungdeul Season 3 Part 2", "또봇 : 대도시의 영웅들 시즌3 파트 2"], "top_ids": [62454, 62453, 62456]} +{"sample_index": 83, "mal_id": 14813, "popularity": 85, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "my teen romantic comedy snafu", "hit": true, "position": 4, "kind": "title_exact", "n_returned": 6, "duration_ms": 5430.7, "error": null, "top_titles": ["My Teen Romantic Comedy SNAFU Climax", "Wataru Watari", "Minoru Ōhara", "My Teen Romantic Comedy SNAFU TOO!", "Ponkan8", "Kei Oikawa", "Keiichirō Ōchi"], "top_ids": ["26893", "26892", "21999"]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "文豪ストレイドッグス", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 9, "duration_ms": 4286.9, "error": null, "top_titles": ["Bungou Stray Dogs", "Literary Stray Dogs", "Bungou Stray Dogs 2nd Season", "Bungou Stray Dogs 3"], "top_ids": ["11339", "11882", "41984"]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "하이스쿨 DxD", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3259.3, "error": null, "top_titles": ["High School DxD", "High School DxD OVA", "High School DxD Specials"], "top_ids": [11617, 12729, 13357]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ハイキュー!! セカンドシーズン", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2666.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Attack on Titan: Final Season Part 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3233.4, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin Season 4", "Attack on Titan Season 4", "Shingeki no Kyojin: The Final Season - Kanketsu-hen", "Shingeki no Kyojin: The Final Season Part 3", "Shingeki no Kyojin: The Final Season"], "top_ids": [48583, 51535, 40028]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "bakemonogatari", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 11731.3, "error": null, "top_titles": ["Bakemonogatari", "化物語", "Bakemonogatari PV", "化物語 PV"], "top_ids": [5081, 143663]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "文豪野犬", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5003.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "はいきゅー!! せかんどしーずん", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4265.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "文豪Stray Dogs", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3676.0, "error": null, "top_titles": ["Bungou Stray Dogs", "Literary Stray Dogs", "Bungou Stray Dogs 2nd Season", "Bungou Stray Dogs 3"], "top_ids": ["11339", "11882", "41984"]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "排球少年 第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3761.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "デュラララ!!", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 8873.6, "error": null, "top_titles": ["Durarara!!", "デュラララ!!", "Durarara!! Specials", "Durarara!!x2 Ten", "Durarara!! X2 The Second Arc", "デュラララ!!×2 転"], "top_ids": [6746, 8408, 20879]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "文豪Stray Dogs", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2738.6, "error": null, "top_titles": ["Bungou Stray Dogs", "Literary Stray Dogs", "Bungou Stray Dogs 2nd Season", "Bungou Stray Dogs 3"], "top_ids": ["11339", "11882", "41984"]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "High School DxD", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 9892.7, "error": null, "top_titles": ["High School DxD", "High School DxD OVA", "High School DxD Specials"], "top_ids": [11617, 12729, 13357]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "문호 스트레이 독스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2606.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "ja", "backend": "anilist", "variant": "enhance_kata2hira", "query": "でゅららら!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3422.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "排球少年!!第二季", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5656.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "high school dxd", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3277.1, "error": null, "top_titles": ["High School DxD", "High School DxD OVA", "High School DxD Specials"], "top_ids": [11617, 12729, 13357]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Bungo Stray Dogs", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 4201.6, "error": null, "top_titles": ["Bungou Stray Dogs", "Literary Stray Dogs", "Bungou Stray Dogs 2nd Season", "Bungou Stray Dogs 3"], "top_ids": ["11339", "11882", "41984"]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "无头骑士异闻录", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6310.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "無頭騎士異聞錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1847.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "하이큐!! 세컨드 시즌", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6876.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan final season part 2", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6633.6, "error": null, "top_titles": ["Shingeki no Kyojin: The Final Season Part 2", "Shingeki no Kyojin Season 4", "Attack on Titan Season 4", "Shingeki no Kyojin: The Final Season - Kanketsu-hen", "Shingeki no Kyojin: The Final Season Part 3", "Shingeki no Kyojin: The Final Season"], "top_ids": [48583, 51535, 40028]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7788.9, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen OVA"], "top_ids": [40591, 37999, 43609]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "無頭騎士異聞錄 DuRaRaRa!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3174.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_jaconv_norm", "query": "かぐや様は告らせたい?ー天才たちの恋愛頭脳戦ー", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2355.1, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen OVA"], "top_ids": [40591, 37999, 43609]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Haikyu!! 2nd Season", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5383.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "bungo stray dogs", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 3924.3, "error": null, "top_titles": ["Bungou Stray Dogs", "Literary Stray Dogs", "Bungou Stray Dogs 2nd Season", "Bungou Stray Dogs 3"], "top_ids": ["11339", "11882", "41984"]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "鋼の錬金術師", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7481.1, "error": null, "top_titles": ["Fullmetal Alchemist", "Hagane no Renkinjutsushi", "FMA", "Fullmetal Alchemist: Brotherhood Specials", "Moumoku no Renkinjutsushi", "The Blind Alchemist", "Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi: Fullmetal Alchemist"], "top_ids": [121, 6421, 5114]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "辉夜大小姐想让我告白?~天才们的恋爱头脑战~", "hit": true, "position": 8, "kind": "title_exact", "n_returned": 10, "duration_ms": 5562.1, "error": null, "top_titles": ["He Wei Dao x Hui Yeda Xiaojie Xiangyao Wo Gaobai", "Xin Datou Er Zi He Xiao Tou Baba: Chuxi - Baiye Cheng", "Xin Datou Er Zi He Xiao Tou Baba 5: Wo de Wai Xing Pengyou"], "top_ids": [44270, 43934, 60456]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "メイドインアビス", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 2646.8, "error": null, "top_titles": ["Made in Abyss", "Made in Abyss: Retsujitsu no Ougonkyou", "Made in Abyss Season 2", "Made in Abyss: Hourou suru Tasogare"], "top_ids": ["13273", "42951", "41081"]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "钢之炼金术师", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3135.3, "error": null, "top_titles": ["Yuzhou Huwei Dui: Gang Jia Bawang Long", "Yuzhou Huwei Dui 4", "宇宙护卫队之钢甲霸王龙", "Jipin Tian Shi", "极品天师", "Supreme Exorcist", "Shixiong A Shixiong: Nian Fan 2", "Big Brother 4"], "top_ids": [57317, 62781, 61753]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "輝夜大小姐想讓我告白?~天才們的戀愛頭腦戰~", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2654.3, "error": null, "top_titles": ["He Wei Dao x Hui Yeda Xiaojie Xiangyao Wo Gaobai", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen"], "top_ids": [44270, 40591, 37999]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "无头骑士异闻录 DuRaRaRa!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 11938.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2771.5, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen OVA"], "top_ids": [40591, 37999, 43609]} +{"sample_index": 84, "mal_id": 28891, "popularity": 87, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "haikyu 2nd season", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6744.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "進撃の巨人 The Final Season Part 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2565.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "めいどいんあびす", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 10612.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "無頭騎士異聞錄 DuRaRaRa!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8123.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "鋼之鍊金術師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12335.0, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "进击的巨人 最终季 Part.2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7514.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "鋼之鍊金術師", "hit": true, "position": 6, "kind": "id", "n_returned": 10, "duration_ms": 3660.9, "error": null, "top_titles": ["Isshun de Chiryou shiteita noni Yakutatazu to Tsuihou sareta Tensai Chiyushi, Yami Healer toshite Tanoshiku Ikiru 2nd Season", "Yami Healer", "一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる 2期", "Izure Saikyou no Renkinjutsushi? 2nd Season", "Someday Will I Be the Greatest Alchemist? Season 2", "いずれ最強の錬金術師? 2期"], "top_ids": [63254, 62469, 62469]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "辉夜姬想让人告白?~天才们的恋爱头脑战~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14270.1, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "无头骑士异闻录 DuRaRaRa!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7153.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2224.1, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen OVA"], "top_ids": [40591, 37999, 43609]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "듀라라라!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2691.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "钢之炼金术师", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5030.0, "error": null, "top_titles": ["Yuzhou Huwei Dui: Gang Jia Bawang Long", "Yuzhou Huwei Dui 4", "宇宙护卫队之钢甲霸王龙", "Jipin Tian Shi", "极品天师", "Supreme Exorcist", "Shixiong A Shixiong: Nian Fan 2", "Big Brother 4"], "top_ids": [57317, 62781, 61753]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "来自深渊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14832.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "進擊的巨人 The Final Season Part 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9665.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "來自深淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3250.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "鋼之鍊金術師", "hit": true, "position": 6, "kind": "id", "n_returned": 10, "duration_ms": 6007.5, "error": null, "top_titles": ["Isshun de Chiryou shiteita noni Yakutatazu to Tsuihou sareta Tensai Chiyushi, Yami Healer toshite Tanoshiku Ikiru 2nd Season", "Yami Healer", "一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる 2期", "Izure Saikyou no Renkinjutsushi? 2nd Season", "Someday Will I Be the Greatest Alchemist? Season 2", "いずれ最強の錬金術師? 2期"], "top_ids": [63254, 62469, 62469]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "辉夜姬想让人告白?~天才们的恋爱头脑战~", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 9271.2, "error": null, "top_titles": ["He Wei Dao x Hui Yeda Xiaojie Xiangyao Wo Gaobai", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen"], "top_ids": [44270, 40591, 37999]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "钢之炼金术师", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2523.3, "error": null, "top_titles": ["Yuzhou Huwei Dui: Gang Jia Bawang Long", "Yuzhou Huwei Dui 4", "宇宙护卫队之钢甲霸王龙", "Jipin Tian Shi", "极品天师", "Supreme Exorcist", "Shixiong A Shixiong: Nian Fan 2", "Big Brother 4"], "top_ids": [57317, 62781, 61753]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "來自深淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3675.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "카구야 님은 고백받고 싶어 2기", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3199.4, "error": null, "top_titles": ["Nolaehago Sip-eo", "Dudadakung 2nd Season", "Biklonz 2nd Season"], "top_ids": [42911, 48170, 59948]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Durarara!!", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 12386.4, "error": null, "top_titles": ["Durarara!!", "デュラララ!!", "Durarara!!x2 Shou", "Durarara!! X2", "デュラララ!!×2 承", "Durarara!! Specials"], "top_ids": [6746, 20652, 8408]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "강철의 연금술사", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3414.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Kaguya-sama: Love is War?", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3646.3, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Ultra Romantic Teaser PV - Ishigami Yuu wa Kataritai", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen"], "top_ids": [40591, 50325, 37999]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "来自深渊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5618.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "durarara", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 2784.2, "error": null, "top_titles": ["Durarara!!", "デュラララ!!", "Durarara!! Specials", "Durarara!!x2 Shou", "Durarara!! X2", "デュラララ!!×2 承"], "top_ids": [6746, 8408, 20652]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "進擊的巨人 The Final Season Part 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14298.4, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "來自深淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2648.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Fullmetal Alchemist", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6100.2, "error": null, "top_titles": ["Fullmetal Alchemist", "Hagane no Renkinjutsushi", "FMA", "Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi: Fullmetal Alchemist", "Fullmetal Alchemist (2009)", "Fullmetal Alchemist: The Conqueror of Shamballa", "Gekijyouban Hagane no Renkinjutsushi - Shanbara wo Yuku Mono"], "top_ids": [121, 5114, 430]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ハウルの動く城", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2586.6, "error": null, "top_titles": ["Howl no Ugoku Shiro", "Howl‘s Moving Castle", "ハウルの動く城"], "top_ids": [431]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "来自深渊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2858.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "kaguya sama love is war", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 4424.1, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Ultra Romantic Teaser PV - Ishigami Yuu wa Kataritai", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen"], "top_ids": [50325, 40591, 37999]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "哈尔的移动城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7621.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "메이드 인 어비스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6221.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "化物語", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 7670.7, "error": null, "top_titles": ["Bakemonogatari Recap", "Bakemonogatari", "Nekomonogatari: Kuro Recap"], "top_ids": [6948, 5081, 38971]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "fullmetal alchemist", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 8720.5, "error": null, "top_titles": ["Fullmetal Alchemist", "Hagane no Renkinjutsushi", "FMA", "Fullmetal Alchemist: Brotherhood", "Hagane no Renkinjutsushi: Fullmetal Alchemist", "Fullmetal Alchemist (2009)", "Fullmetal Alchemist: The Conqueror of Shamballa", "Gekijyouban Hagane no Renkinjutsushi - Shanbara wo Yuku Mono"], "top_ids": [121, 5114, 430]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "진격의 거인: 파이널 시즌 파트 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13109.5, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "哈爾的移動城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3809.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Made in Abyss", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 3669.8, "error": null, "top_titles": ["Made in Abyss", "Made in Abyss: Fukaki Tamashii no Reimei", "Made in Abyss: Retsujitsu no Ougonkyou", "Made in Abyss Season 2"], "top_ids": ["13273", "14027", "42951"]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "化物语", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 3232.7, "error": null, "top_titles": ["Chongwu Wuyu", "Bakemonogatari Recap", "Bakemonogatari"], "top_ids": [46968, 6948, 5081]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "哈爾移動城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2102.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ノラガミ ARAGOTO", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4194.0, "error": null, "top_titles": ["Noragami Aragoto", "ノラガミ ARAGOTO", "Dentsu", "Noragami Aragoto OVA", "Noragami Aragoto OAD", "ノラガミ OAD", "Noragami", "ノラガミ"], "top_ids": [30503, 30885, 20507]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "made in abyss", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 2347.2, "error": null, "top_titles": ["Made in Abyss", "Made in Abyss: Fukaki Tamashii no Reimei", "Made in Abyss: Retsujitsu no Ougonkyou", "Made in Abyss Season 2"], "top_ids": ["13273", "14027", "42951"]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "化物语", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 3549.2, "error": null, "top_titles": ["Chongwu Wuyu", "Bakemonogatari Recap", "Bakemonogatari"], "top_ids": [46968, 6948, 5081]} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Attack on Titan: Final Season Part 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7069.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "化物語", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2378.8, "error": null, "top_titles": ["Bakemonogatari Recap", "Bakemonogatari", "Nekomonogatari: Kuro Recap"], "top_ids": [6948, 5081, 38971]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "のらがみ ARAGOTO", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5422.9, "error": null, "top_titles": ["Sokushi Cheat ga Saikyou sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga.", "The other world doesn't stand a chance against the power of instant death", "即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。", "Given: Uragawa no Sonzai", "Given OVA", "Given OAD", "Ichiendama no Tabigarasu", "Minna no Uta"], "top_ids": [53730, 49053, 36395]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "化物語", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 2835.1, "error": null, "top_titles": ["Bakemonogatari Recap", "Bakemonogatari", "Nekomonogatari: Kuro Recap"], "top_ids": [6948, 5081, 38971]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "化物语", "hit": true, "position": 2, "kind": "title_exact", "n_returned": 10, "duration_ms": 2314.7, "error": null, "top_titles": ["Chongwu Wuyu", "Bakemonogatari Recap", "Bakemonogatari"], "top_ids": [46968, 6948, 5081]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "野良神 ARAGOTO", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5541.7, "error": null, "top_titles": ["Noragami Aragoto", "ノラガミ ARAGOTO", "Dentsu", "Norasco", "Nora Suko", "野良スコ", "Norasco (TV)", "Nora Suko (TV)"], "top_ids": [30503, 24773, 31019]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "哈尔移动城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13377.0, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 85, "mal_id": 48583, "popularity": 88, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "attack on titan final season part 2", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4754.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "炎炎ノ消防隊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12348.7, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "괴물 이야기", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5456.2, "error": null, "top_titles": ["Iyagi Yeohaeng", "Bollogi Iyagi", "Je Bul Chal-ssi Iyagi"], "top_ids": [48317, 7504, 8081]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "流浪神差II", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4577.5, "error": null, "top_titles": ["Sword Art Online II", "Phantom Bullet", "SAO II", "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", "DanMachi 2nd Season", "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season", "Kuroshitsuji II", "Kuroshitsuji 2"], "top_ids": [21881, 37347, 6707]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "霍爾的移動城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5623.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "霍尔的移动城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3331.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "炎炎消防队", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7306.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "流浪神差 ARAGOTO", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 8046.7, "error": null, "top_titles": ["Noragami Aragoto", "ノラガミ ARAGOTO", "Dentsu", "Queen's Blade: Rurou no Senshi", "Queen's Blade", "Sentou Kyoukain Alain", "Rurouni Kenshin Special", "Rurouni Kenshin Episode 95: End of Wanderings"], "top_ids": [30503, 4719, 12067]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Bakemonogatari", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 8608.6, "error": null, "top_titles": ["Bakemonogatari", "Bakemonogatari Recap", "Nekomonogatari: Kuro Recap"], "top_ids": [5081, 6948, 38971]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "鋼の錬金術師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12283.2, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "en", "backend": "shikimori", "variant": "enhance_romaji_to_katakana", "query": "バケモノガタリ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1751.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "하울의 움직이는 성", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4922.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "노라가미 ARAGOTO", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3330.9, "error": null, "top_titles": ["Noragami Aragoto", "ノラガミ ARAGOTO", "Dentsu", "Noragami Aragoto OVA", "Noragami Aragoto OAD", "ノラガミ OAD", "Nirvana", "Nirubana"], "top_ids": [30503, 30885, 32468]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "炎炎消防隊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6008.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "bakemonogatari", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2212.2, "error": null, "top_titles": ["Bakemonogatari", "Bakemonogatari Recap", "Nekomonogatari: Kuro Recap"], "top_ids": [5081, 6948, 38971]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Howl's Moving Castle", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 4049.9, "error": null, "top_titles": ["Howl no Ugoku Shiro", "Howl‘s Moving Castle", "ハウルの動く城"], "top_ids": [431]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "デュラララ!!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 3788.7, "error": null, "top_titles": ["Durarara!!", "Durarara!! Specials", "Durarara!!x2 Shou"], "top_ids": [6746, 8408, 23199]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "炎炎消防隊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4248.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Noragami Aragoto", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5179.5, "error": null, "top_titles": ["Noragami Aragoto", "ノラガミ ARAGOTO", "Dentsu", "Noragami Aragoto OVA", "Noragami Aragoto OAD", "ノラガミ OAD", "Nirvana", "Nirubana"], "top_ids": [30503, 30885, 32468]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "钢之炼金术师", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7202.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "炎炎消防队", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2660.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "ja", "backend": "shikimori", "variant": "enhance_kata2hira", "query": "でゅららら!!", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4824.7, "error": null, "top_titles": ["Tsukuyomi: Moon Phase Special", "Maria†Holic: Runrun Riru Ranran Rara", "Girls & Panzer: Motto Love Love Sakusen desu!"], "top_ids": [2580, 10679, 61227]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "炎炎消防隊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5831.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "鋼之鍊金術師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9098.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "en", "backend": "jikan", "variant": "enhance_romaji_to_katakana", "query": "ノラガミ アラゴト", "hit": true, "position": 1, "kind": "id", "n_returned": 4, "duration_ms": 5384.4, "error": null, "top_titles": ["Noragami", "ノラガミ", "Avex Entertainment", "Noragami Aragoto", "ノラガミ ARAGOTO", "Dentsu", "Noragami OVA", "Noragami OAD"], "top_ids": [20507, 30503, 20767]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "无头骑士异闻录", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 11242.4, "error": null, "top_titles": ["Min Diao Ju Yi Wen Lu", "Xin Yichang Shengwu Jianwen Lu: Xu", "Xing Hai Qishi"], "top_ids": [41917, 60581, 44410]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "炎炎消防队", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7527.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "鋼之鍊金術師", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8975.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "noragami aragoto", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6009.6, "error": null, "top_titles": ["Noragami Aragoto", "ノラガミ ARAGOTO", "Dentsu", "Noragami Aragoto OVA", "Noragami Aragoto OAD", "ノラガミ OAD", "Nirvana", "Nirubana"], "top_ids": [30503, 30885, 32468]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "無頭騎士異聞錄", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 8937.3, "error": null, "top_titles": ["Tenpou Ibun: Ayakashi Ayashi - Ayashi Shinkyoku", "Tenpou Ibun: Ayakashi Ayashi", "Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu"], "top_ids": [3248, 1587, 48760]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "文豪ストレイドッグス", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5735.9, "error": null, "top_titles": ["Bungou Stray Dogs", "Literary Stray Dogs", "BSD", "Bungou Stray Dogs 2nd Season", "文豪ストレイドッグス", "Bungo Stray Dogs 2", "Bungou Stray Dogs 4th Season", "Bungo Stray Dogs 4"], "top_ids": [31478, 32867, 50330]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "howl s moving castle", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14264.5, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "불꽃 소방대", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12162.5, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "氷菓", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3399.2, "error": null, "top_titles": ["Hyouka", "氷菓", "Hyouka: Motsubeki Mono wa", "Hyouka: What Should Be Had", "氷菓 持つべきものは"], "top_ids": [12189, 13469]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "文豪野犬", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 4119.5, "error": null, "top_titles": ["Bungou Stray Dogs Wan! 2", "Bunsuto Wan! 2", "文豪ストレイドッグスわん!2", "Bungou Stray Dogs", "Literary Stray Dogs", "BSD", "Bungou Stray Dogs 2nd Season", "文豪ストレイドッグス"], "top_ids": [62883, 31478, 32867]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "冰菓", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2910.2, "error": null, "top_titles": ["Hyouka", "氷菓"], "top_ids": [12189]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "강철의 연금술사", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13921.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "無頭騎士異聞錄 DuRaRaRa!!", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 8298.8, "error": null, "top_titles": ["Tenpou Ibun: Ayakashi Ayashi - Ayashi Shinkyoku", "Tenpou Ibun: Ayakashi Ayashi", "Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu"], "top_ids": [3248, 1587, 48760]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "文豪Stray Dogs", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3293.2, "error": null, "top_titles": ["Bungou Stray Dogs", "Literary Stray Dogs", "BSD", "Bungou Stray Dogs 2nd Season", "文豪ストレイドッグス", "Bungo Stray Dogs 2", "Bungou Stray Dogs 3rd Season", "文豪ストレイドッグス 第3期"], "top_ids": [31478, 32867, 38003]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Fire Force", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 6552.9, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Brigade of Flames", "Enen no Shouboutai: Ni no Shou", "Enen no Shouboutai 2nd Season", "Enen no Shouboutai: San no Shou"], "top_ids": ["42068", "42909", "46119"]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "冰菓", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2195.2, "error": null, "top_titles": ["Hyouka", "氷菓"], "top_ids": [12189]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "文豪Stray Dogs", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3211.2, "error": null, "top_titles": ["Bungou Stray Dogs", "Literary Stray Dogs", "BSD", "Bungou Stray Dogs 2nd Season", "文豪ストレイドッグス", "Bungo Stray Dogs 2", "Bungou Stray Dogs 3rd Season", "文豪ストレイドッグス 第3期"], "top_ids": [31478, 32867, 38003]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "无头骑士异闻录 DuRaRaRa!!", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5739.9, "error": null, "top_titles": ["Min Diao Ju Yi Wen Lu", "Xin Yichang Shengwu Jianwen Lu: Xu", "Xing Hai Qishi"], "top_ids": [41917, 60581, 44410]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "fire force", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3337.4, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Brigade of Flames", "Enen no Shouboutai: Ni no Shou", "Enen no Shouboutai 2nd Season", "Enen no Shouboutai: San no Shou"], "top_ids": ["42068", "42909", "46119"]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "문호 스트레이 독스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4613.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "無頭騎士異聞錄 DuRaRaRa!!", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3087.1, "error": null, "top_titles": ["Tenpou Ibun: Ayakashi Ayashi - Ayashi Shinkyoku", "Tenpou Ibun: Ayakashi Ayashi", "Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu"], "top_ids": [3248, 1587, 48760]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Fullmetal Alchemist", "hit": true, "position": 8, "kind": "title_exact", "n_returned": 9, "duration_ms": 9000.1, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Yasuhiro Irie", "Hiroshi Ōnogi", "Fullmetal Alchemist: The Sacred Star of Milos", "Kazuya Murata", "Yūichi Shinpo"], "top_ids": ["14079", "12180", "10216"]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ハイスクールD×D", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4464.9, "error": null, "top_titles": ["High School DxD", "Highschool DxD", "High School DxD New", "High School DxD Dai 2-ki", "High School DxD 2nd Season", "High School DxD BorN", "High School DxD Third Season", "High School DxD 3rd Season"], "top_ids": ["6550", "7258", "8514"]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Bungo Stray Dogs", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5658.7, "error": null, "top_titles": ["Bungou Stray Dogs", "Literary Stray Dogs", "BSD", "Bungou Stray Dogs 2nd Season", "文豪ストレイドッグス", "Bungo Stray Dogs 2", "Bungou Stray Dogs 3rd Season", "文豪ストレイドッグス 第3期"], "top_ids": [31478, 32867, 38003]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "はいすくーるD×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1858.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "빙과", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14981.1, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "无头骑士异闻录 DuRaRaRa!!", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 10111.2, "error": null, "top_titles": ["Min Diao Ju Yi Wen Lu", "Xin Yichang Shengwu Jianwen Lu: Xu", "Xing Hai Qishi"], "top_ids": [41917, 60581, 44410]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "듀라라라!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2635.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Hyouka", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 5552.0, "error": null, "top_titles": ["Hyouka", "氷菓", "Hyouka: Motsubeki Mono wa", "Hyouka: What Should Be Had", "氷菓 持つべきものは", "Kyoshin to Hyouka no Shiro", "巨神と氷華の城"], "top_ids": [12189, 13469, 121684]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "bungo stray dogs", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3307.0, "error": null, "top_titles": ["Bungou Stray Dogs", "Literary Stray Dogs", "BSD", "Bungou Stray Dogs 2nd Season", "文豪ストレイドッグス", "Bungo Stray Dogs 2", "Bungou Stray Dogs 3rd Season", "文豪ストレイドッグス 第3期"], "top_ids": [31478, 32867, 38003]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "恶魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12274.9, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Durarara!!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 5428.1, "error": null, "top_titles": ["Durarara!!", "Durarara!! Specials", "Durarara!!x2 Shou"], "top_ids": [6746, 8408, 23199]} +{"sample_index": 86, "mal_id": 121, "popularity": 89, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "fullmetal alchemist", "hit": true, "position": 8, "kind": "title_exact", "n_returned": 9, "duration_ms": 6439.6, "error": null, "top_titles": ["Fullmetal Alchemist: Brotherhood", "Yasuhiro Irie", "Hiroshi Ōnogi", "Fullmetal Alchemist: The Sacred Star of Milos", "Kazuya Murata", "Yūichi Shinpo"], "top_ids": ["14079", "12180", "10216"]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "en", "backend": "anilist", "variant": "enhance_romaji_to_katakana", "query": "ヒョウカ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7052.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "メイドインアビス", "hit": true, "position": 0, "kind": "id", "n_returned": 7, "duration_ms": 6280.9, "error": null, "top_titles": ["Made in Abyss", "メイドインアビス", "AT-X", "Made in Abyss Movie 3: Fukaki Tamashii no Reimei", "Gekijouban Made in Abyss: Fukaki Tamashii no Reimei", "劇場版メイドインアビス 深き魂の黎明", "Made in Abyss: Retsujitsu no Ougonkyou", "メイドインアビス 烈日の黄金郷"], "top_ids": [34599, 36862, 41084]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "hyouka", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 3090.9, "error": null, "top_titles": ["Hyouka", "氷菓", "Hyouka: Motsubeki Mono wa", "Hyouka: What Should Be Had", "氷菓 持つべきものは", "Kyoshin to Hyouka no Shiro", "巨神と氷華の城"], "top_ids": [12189, 13469, 121684]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "ようこそ実力至上主義の教室へ", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 2932.2, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Classroom of the Elite", "ようこそ実力至上主義の教室へ", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", "Classroom of the Elite Season 3", "ようこそ実力至上主義の教室へ 3rd Season", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", "Classroom of the Elite Season 2"], "top_ids": [98659, 146066, 145545]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "欢迎来到实力至上主义的教室", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 1526.3, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", "Classroom of the Elite Season 3", "ようこそ実力至上主義の教室へ 3rd Season"], "top_ids": [146066]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "めいどいんあびす", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 5960.1, "error": null, "top_titles": ["Kobitos", "こびとす", "The Kobitos", "Suna Asobi", "Sand Play", "すなあそび", "Non Non Biyori Nonstop", "Non Non Biyori 3rd Season"], "top_ids": [50880, 29505, 39808]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "惡魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12413.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "歡迎來到實力至上主義的教室", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 2396.9, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Classroom of the Elite", "ようこそ実力至上主義の教室へ", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", "Classroom of the Elite Season 2", "ようこそ実力至上主義の教室へ 2nd Season", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", "Classroom of the Elite Season 3"], "top_ids": [98659, 145545, 146066]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "来自深渊", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 4251.6, "error": null, "top_titles": ["Ba Ma Laizi Er Ciyuan", "My Parents are Otakus", "Otaku's Offspring", "Shenyuan Youxi", "Shen Yuan You Xi", "The Abyss Game"], "top_ids": [44072, 57513]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "惡魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3210.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "durarara", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 12750.1, "error": null, "top_titles": ["Durarara!!", "Durarara!! Specials", "Durarara!!x2 Shou"], "top_ids": [6746, 8408, 23199]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ノラガミ ARAGOTO", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 16153.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "恶魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4242.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "來自深淵", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 4718.3, "error": null, "top_titles": ["Mouretsu Pirates: Abyss of Hyperspace", "Mouretsu Pirates Movie", "Mouretsu Pirates: Akuu no Shinen", "5-toubun no Princess: Gensou to Shinen to Mahou Gakuin", "五等分のプリンセス ~幻想と深淵と魔法学院~", "Seven Arcs"], "top_ids": [14817, 64106]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ハウルの動く城", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 7961.7, "error": null, "top_titles": ["Howl no Ugoku Shiro", "Sabaku no Takara no Shiro", "Sore Ike! Anpanman: Santa-san wo Sukue! Koori no Shiro no Christmas"], "top_ids": [431, 17427, 60471]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "來自深淵", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 5765.6, "error": null, "top_titles": ["Mouretsu Pirates: Abyss of Hyperspace", "Mouretsu Pirates Movie", "Mouretsu Pirates: Akuu no Shinen", "5-toubun no Princess: Gensou to Shinen to Mahou Gakuin", "五等分のプリンセス ~幻想と深淵と魔法学院~", "Seven Arcs"], "top_ids": [14817, 64106]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "歡迎來到實力至上主義的教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13196.1, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "のらがみ ARAGOTO", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9405.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "惡魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7426.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "来自深渊", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 2475.7, "error": null, "top_titles": ["Ba Ma Laizi Er Ciyuan", "My Parents are Otakus", "Otaku's Offspring", "Shenyuan Youxi", "Shen Yuan You Xi", "The Abyss Game"], "top_ids": [44072, 57513]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "野良神 ARAGOTO", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2163.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "來自深淵", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 1777.4, "error": null, "top_titles": ["Mouretsu Pirates: Abyss of Hyperspace", "Mouretsu Pirates Movie", "Mouretsu Pirates: Akuu no Shinen", "5-toubun no Princess: Gensou to Shinen to Mahou Gakuin", "五等分のプリンセス ~幻想と深淵と魔法学院~", "Seven Arcs"], "top_ids": [14817, 64106]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "哈尔的移动城堡", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 14244.5, "error": null, "top_titles": ["Fengkuang Dongwu Cheng: Dongwu Cheng Ri Yu Ye", "Kaixin Guo De Luse Jiayuan: Haha Senlin", "Mao Xian Dong De Shou!"], "top_ids": [62894, 46405, 50797]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "欢迎来到实力至上主义的教室", "hit": true, "position": 0, "kind": "title_substring", "n_returned": 1, "duration_ms": 13601.7, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", "Classroom of the Elite Season 3", "ようこそ実力至上主義の教室へ 3rd Season"], "top_ids": [146066]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "流浪神差II", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12930.3, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "歡迎來到實力至上主義的教室", "hit": true, "position": 0, "kind": "id", "n_returned": 3, "duration_ms": 3819.2, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Classroom of the Elite", "ようこそ実力至上主義の教室へ", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", "Classroom of the Elite Season 2", "ようこそ実力至上主義の教室へ 2nd Season", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", "Classroom of the Elite Season 3"], "top_ids": [98659, 145545, 146066]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "流浪神差 ARAGOTO", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7770.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "哈爾的移動城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12491.7, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "恶魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 25335.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "노라가미 ARAGOTO", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3992.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "来自深渊", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 25556.3, "error": null, "top_titles": ["Ba Ma Laizi Er Ciyuan", "My Parents are Otakus", "Otaku's Offspring", "Shenyuan Youxi", "Shen Yuan You Xi", "The Abyss Game"], "top_ids": [44072, 57513]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "哈爾移動城堡", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5178.2, "error": null, "top_titles": ["Howl no Ugoku Shiro", "Dou Dou Hu Chengbao Zhi Lu", "Ting Ting Zhishi Chengbao Lixian Ji"], "top_ids": [431, 45736, 46189]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "하이스쿨 DxD", "hit": false, "position": null, "kind": "", "n_returned": 2, "duration_ms": 4649.6, "error": null, "top_titles": ["The God of High School", "The God of High School Preview"], "top_ids": ["43018", "42547"]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Noragami Aragoto", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4410.8, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "High School DxD", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2721.6, "error": null, "top_titles": ["High School DxD", "Highschool DxD", "High School DxD New", "High School DxD Dai 2-ki", "High School DxD 2nd Season", "High School DxD BorN", "High School DxD Third Season", "High School DxD 3rd Season"], "top_ids": ["6550", "7258", "8514"]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "欢迎来到实力至上主义的教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 17502.6, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "메이드 인 어비스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6469.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "哈尔移动城堡", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6392.7, "error": null, "top_titles": ["Fengkuang Dongwu Cheng: Dongwu Cheng Ri Yu Ye", "Dou Dou Hu Chengbao Zhi Lu", "Ting Ting Zhishi Chengbao Lixian Ji"], "top_ids": [62894, 45736, 46189]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "어서 오세요 실력지상주의 교실에", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1970.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "霍爾的移動城堡", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2807.1, "error": null, "top_titles": ["Howl no Ugoku Shiro", "Tuo Lei de Wanju Cheng", "Dou Dou Hu Chengbao Zhi Lu"], "top_ids": [431, 47943, 45736]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "霍尔的移动城堡", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3588.5, "error": null, "top_titles": ["Fengkuang Dongwu Cheng: Dongwu Cheng Ri Yu Ye", "Mao Xian Dong De Shou!", "Tuo Lei de Wanju Cheng"], "top_ids": [62894, 50797, 47943]} +{"sample_index": 87, "mal_id": 30503, "popularity": 90, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "noragami aragoto", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3590.3, "error": null, "top_titles": ["Noragami Aragoto", "Kotaro Tamura", "Deko Akao"], "top_ids": ["16906"]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Made in Abyss", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 9930.4, "error": null, "top_titles": ["Made in Abyss", "メイドインアビス", "AT-X", "Made in Abyss Movie 3: Fukaki Tamashii no Reimei", "Gekijouban Made in Abyss: Fukaki Tamashii no Reimei", "劇場版メイドインアビス 深き魂の黎明", "Made in Abyss Movie 2: Hourou Suru Tasogare", "Made in Abyss Movie 2: Wandering Twilight"], "top_ids": [34599, 36862, 37515]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Classroom of the Elite", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12188.6, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "high school dxd", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2280.0, "error": null, "top_titles": ["High School DxD", "Highschool DxD", "High School DxD New", "High School DxD Dai 2-ki", "High School DxD 2nd Season", "High School DxD BorN", "High School DxD Third Season", "High School DxD 3rd Season"], "top_ids": ["6550", "7258", "8514"]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "하울의 움직이는 성", "hit": false, "position": null, "kind": "", "n_returned": 4, "duration_ms": 6716.5, "error": null, "top_titles": ["Gigi Goegoe Sunghyungsoo", "Dongseonglo feat. Crush", "Yangseongpyeongdeung 2"], "top_ids": [42737, 54514, 53146]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2833.3, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2", "Kaguya-sama: Love is War Season 2"], "top_ids": ["41373", "42632"]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_jaconv_norm", "query": "かぐや様は告らせたい?ー天才たちの恋愛頭脳戦ー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2813.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "文豪ストレイドッグス", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12244.3, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "辉夜大小姐想让我告白?~天才们的恋爱头脑战~", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2348.6, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2", "Kaguya-sama: Love is War Season 2", "Kaguya-sama wa Kokurasetai: Ultra Romantic", "Kaguya-sama: Love is War Season 3", "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3"], "top_ids": ["42632", "43691"]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Howl's Moving Castle", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 8499.6, "error": null, "top_titles": ["Howl no Ugoku Shiro", "Kidou", "Castle"], "top_ids": [431, 42274, 52195]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "classroom of the elite", "hit": true, "position": 0, "kind": "id", "n_returned": 4, "duration_ms": 6318.1, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Classroom of the Elite", "ようこそ実力至上主義の教室へ", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", "Classroom of the Elite Season 3", "ようこそ実力至上主義の教室へ 3rd Season", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", "Classroom of the Elite Season 2"], "top_ids": [98659, 146066, 145545]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "made in abyss", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 8785.8, "error": null, "top_titles": ["Made in Abyss", "メイドインアビス", "AT-X", "Made in Abyss Movie 3: Fukaki Tamashii no Reimei", "Gekijouban Made in Abyss: Fukaki Tamashii no Reimei", "劇場版メイドインアビス 深き魂の黎明", "Made in Abyss Movie 2: Hourou Suru Tasogare", "Made in Abyss Movie 2: Wandering Twilight"], "top_ids": [34599, 36862, 37515]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "文豪野犬", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4630.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "中二病でも恋がしたい!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3292.8, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Love, Chunibyo & Other Delusions", "中二病でも恋がしたい!", "Takanashi Rikka Kai: Chuunibyou demo Koi ga Shitai! Movie Lite", "Love, Chunibyo & Other Delusions! Rikka Version Lite", "映画中二病でも恋がしたい!Lite", "Chuunibyou demo Koi ga Shitai! Ren", "Love, Chunibyo & Other Delusions - Heart Throb -"], "top_ids": [14741, 20660, 18671]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "輝夜大小姐想讓我告白?~天才們的戀愛頭腦戰~", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 5724.4, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2", "Kaguya-sama: Love is War Season 2", "Kaguya-sama wa Kokurasetai: Ultra Romantic", "Kaguya-sama: Love is War Season 3", "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3"], "top_ids": ["42632", "43691"]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "文豪Stray Dogs", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3589.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "炎炎ノ消防隊", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6378.6, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Brigade of Flames", "炎炎ノ消防隊", "Enen no Shouboutai: Ni no Shou", "Enen no Shouboutai 2nd Season", "Fire Force 2nd Season", "Enen no Shouboutai: San no Shou", "Enen no Shouboutai 3rd Season"], "top_ids": [38671, 40956, 51818]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "howl s moving castle", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3604.1, "error": null, "top_titles": ["Howl no Ugoku Shiro", "Bishoujo Senshi Sailor Moon SuperS: Sailor 9 Senshi Shuuketsu! Black Dream Hole no Kiseki", "Kidou Senshi SD Gundam no Gyakushuu"], "top_ids": [431, 1240, 2306]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "中二病也要谈恋爱", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 3769.7, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Love, Chunibyo & Other Delusions", "中二病でも恋がしたい!"], "top_ids": [14741]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "文豪Stray Dogs", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2972.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "氷菓", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3310.0, "error": null, "top_titles": ["Hyouka", "Hyouka: Motsubeki Mono wa", "Koori no Jouheki"], "top_ids": [12189, 13469, 60852]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "中二病也要談戀愛", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3709.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "炎炎消防队", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4239.4, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Brigade of Flames", "炎炎ノ消防隊", "Enen no Shouboutai: Ni no Shou", "Enen no Shouboutai 2nd Season", "Fire Force 2nd Season", "Enen no Shouboutai: San no Shou", "Enen no Shouboutai 3rd Season"], "top_ids": [38671, 40956, 51818]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "문호 스트레이 독스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2905.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "冰菓", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2410.4, "error": null, "top_titles": ["Hyouka", "Bing Shang Yu Xian", "Bingxue Zhi Yue"], "top_ids": [12189, 43365, 55531]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9127.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "冰菓", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4484.7, "error": null, "top_titles": ["Hyouka", "Bing Shang Yu Xian", "Bingxue Zhi Yue"], "top_ids": [12189, 43365, 55531]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "炎炎消防隊", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6638.0, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Brigade of Flames", "炎炎ノ消防隊", "Enen no Shouboutai: Ni no Shou", "Enen no Shouboutai 2nd Season", "Fire Force 2nd Season", "Enen no Shouboutai: San no Shou", "Enen no Shouboutai 3rd Season"], "top_ids": [38671, 40956, 51818]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "빙과", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2525.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "炎炎消防隊", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3363.4, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Brigade of Flames", "炎炎ノ消防隊", "Enen no Shouboutai: Ni no Shou", "Enen no Shouboutai 2nd Season", "Fire Force 2nd Season", "Enen no Shouboutai: San no Shou", "Enen no Shouboutai 3rd Season"], "top_ids": [38671, 40956, 51818]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "辉夜姬想让人告白?~天才们的恋爱头脑战~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6987.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Hyouka", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 4053.7, "error": null, "top_titles": ["Hyouka", "Hyouka: Motsubeki Mono wa", "Kyoshin to Hyouka no Shiro"], "top_ids": [12189, 13469, 42057]} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Bungo Stray Dogs", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13594.4, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4759.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "中二病也想談戀愛!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 15695.4, "error": "ReadTimeout: HTTPSConnectionPool(host='graphql.anilist.co', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "炎炎消防队", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5642.4, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Brigade of Flames", "炎炎ノ消防隊", "Enen no Shouboutai: Ni no Shou", "Enen no Shouboutai 2nd Season", "Fire Force 2nd Season", "Enen no Shouboutai: San no Shou", "Enen no Shouboutai 3rd Season"], "top_ids": [38671, 40956, 51818]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "en", "backend": "shikimori", "variant": "enhance_romaji_to_katakana", "query": "ヒョウカ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2954.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "辉夜姬想让人告白?~天才们的恋爱头脑战~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3075.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "炎炎消防隊", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2829.8, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Brigade of Flames", "炎炎ノ消防隊", "Enen no Shouboutai: Ni no Shou", "Enen no Shouboutai 2nd Season", "Fire Force 2nd Season", "Enen no Shouboutai: San no Shou", "Enen no Shouboutai 3rd Season"], "top_ids": [38671, 40956, 51818]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "hyouka", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3617.1, "error": null, "top_titles": ["Hyouka", "Hyouka: Motsubeki Mono wa", "Kyoshin to Hyouka no Shiro"], "top_ids": [12189, 13469, 42057]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "中二病也想谈恋爱!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4656.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "카구야 님은 고백받고 싶어 2기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3410.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "炎炎消防队", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4781.5, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Brigade of Flames", "炎炎ノ消防隊", "Enen no Shouboutai: Ni no Shou", "Enen no Shouboutai 2nd Season", "Fire Force 2nd Season", "Enen no Shouboutai: San no Shou", "Enen no Shouboutai 3rd Season"], "top_ids": [38671, 40956, 51818]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Kaguya-sama: Love is War?", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2329.3, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2", "Kaguya-sama: Love is War Season 2", "Kaguya-sama wa Kokurasetai: Ultra Romantic", "Kaguya-sama: Love is War Season 3", "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3"], "top_ids": ["41373", "42632", "43691"]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "ようこそ実力至上主義の教室へ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5168.5, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e PV", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season"], "top_ids": [35507, 30813, 51180]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "불꽃 소방대", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 3826.6, "error": null, "top_titles": ["Power Battle Watch Car: Minicar Battle League - Bulkkoch-ui Jilju", "Power Battle Watch Car: Minicar Battle League - Spark of the Fire", "파워배틀 와치카 미니카 배틀리그: 불꽃의 질주"], "top_ids": [38613]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "欢迎来到实力至上主义的教室", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3094.7, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e PV", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season"], "top_ids": [35507, 30813, 51180]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "中二病也想談戀愛!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9065.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Fire Force", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4146.4, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Brigade of Flames", "炎炎ノ消防隊", "Enen no Shouboutai: Ni no Shou", "Enen no Shouboutai 2nd Season", "Fire Force 2nd Season", "Enen no Shouboutai: San no Shou", "Enen no Shouboutai 3rd Season"], "top_ids": [38671, 40956, 51818]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "歡迎來到實力至上主義的教室", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3830.0, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e PV", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season"], "top_ids": [35507, 30813, 51180]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "中二病也想谈恋爱!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2370.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "중2병이라도 사랑이 하고 싶어!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5267.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 88, "mal_id": 31478, "popularity": 91, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "bungo stray dogs", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 9, "duration_ms": 22772.0, "error": null, "top_titles": ["Bungo Stray Dogs Wan! 2", "Toshihiro Kikuchi", "Tōko Machida", "Bungo Stray Dogs", "Takuya Igarashi", "Yōji Enokido"], "top_ids": ["37954", "27704", "24953"]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "歡迎來到實力至上主義的教室", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 15335.9, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e PV", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season"], "top_ids": [35507, 30813, 51180]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Love, Chunibyo & Other Delusions!", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 14119.8, "error": null, "top_titles": ["Takanashi Rikka Kai: Chuunibyou demo Koi ga Shitai! Movie Lite", "Love, Chunibyo & Other Delusions! Rikka Version Lite", "映画中二病でも恋がしたい!Lite", "Chuunibyou demo Koi ga Shitai!", "Love, Chunibyo & Other Delusions", "中二病でも恋がしたい!", "Chuunibyou demo Koi ga Shitai! Lite", "Love, Chunibyo & Other Delusions Lite"], "top_ids": [20660, 14741, 15687]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "fire force", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 14807.8, "error": null, "top_titles": ["Enen no Shouboutai", "Fire Brigade of Flames", "炎炎ノ消防隊", "Enen no Shouboutai: Ni no Shou", "Enen no Shouboutai 2nd Season", "Fire Force 2nd Season", "Enen no Shouboutai: San no Shou", "Enen no Shouboutai 3rd Season"], "top_ids": [38671, 40956, 51818]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "メイドインアビス", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12373.9, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "love chunibyo other delusions", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2487.8, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Love, Chunibyo & Other Delusions", "中二病でも恋がしたい!", "Chuunibyou demo Koi ga Shitai! Lite", "Love, Chunibyo & Other Delusions Lite", "中二病でも恋がしたい!Lite", "Chuunibyou demo Koi ga Shitai! Ren", "Love, Chunibyo & Other Delusions - Heart Throb -"], "top_ids": [14741, 15687, 18671]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ハイスクールD×D", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4366.7, "error": null, "top_titles": ["High School DxD", "Highschool DxD", "ハイスクールD×D", "High School DxD New", "High School DxD Dai 2-ki", "High School DxD 2nd Season", "High School DxD BorN", "High School DxD Third Season"], "top_ids": [11617, 15451, 24703]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "kaguya sama love is war", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 15389.3, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2", "Kaguya-sama: Love is War Season 2", "Kaguya-sama wa Kokurasetai: Ultra Romantic", "Kaguya-sama: Love is War Season 3", "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3"], "top_ids": ["41373", "42632", "43691"]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "欢迎来到实力至上主义的教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12216.9, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "終わりのセラフ", "hit": true, "position": 0, "kind": "id", "n_returned": 5, "duration_ms": 2153.0, "error": null, "top_titles": ["Owari no Seraph", "Seraph of the End: Vampire Reign", "終わりのセラフ", "Owari no Seraph: Owaranai Seraph", "Seraph of the End: Vampire Reign - Owaranai Seraph", "終わりのセラフ「終わらないセラフ」", "Owari no Seraph: Kyuuketsuki Shahal", "Seraph of the End: Kyuuketsuki Shahal"], "top_ids": [20829, 21483, 21586]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "化物語", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 2541.3, "error": null, "top_titles": ["Bakemonogatari", "Ghostory", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5", "Bakemonogatari Special", "Bakemonogatari PV", "漫画 化物語 シャフト制作特別PV", "Bakemonogatari Special PV"], "top_ids": ["3919", "4800", "45896"]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "はいすくーるD×D", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 3497.2, "error": null, "top_titles": ["High School Jingi", "はいすくーる仁義", "Daiei", "High School DxD", "Highschool DxD", "ハイスクールD×D", "High School DxD New", "High School DxD Dai 2-ki"], "top_ids": [24089, 11617, 15451]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "歡迎來到實力至上主義的教室", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2799.5, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e PV", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season"], "top_ids": [35507, 30813, 51180]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_cn", "backend": "anilist", "variant": "raw", "query": "终结的炽天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2514.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "化物语", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3019.0, "error": null, "top_titles": ["Bakemonogatari", "Ghostory", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5", "Bakemonogatari Special", "Bakemonogatari PV", "漫画 化物語 シャフト制作特別PV", "Bakemonogatari Special PV"], "top_ids": ["3919", "4800", "45896"]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_cn", "backend": "anilist", "variant": "enhance_zh_traditional", "query": "終結的熾天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2068.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "恶魔高校D×D", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2900.7, "error": null, "top_titles": ["High School DxD", "Highschool DxD", "ハイスクールD×D", "High School DxD New", "High School DxD Dai 2-ki", "High School DxD 2nd Season", "High School DxD BorN", "High School DxD Third Season"], "top_ids": [11617, 15451, 24703]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "欢迎来到实力至上主义的教室", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2545.5, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e PV", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season"], "top_ids": [35507, 30813, 51180]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "終結的熾天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2664.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "惡魔高校D×D", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3475.4, "error": null, "top_titles": ["High School DxD", "Highschool DxD", "ハイスクールD×D", "High School DxD New", "High School DxD Dai 2-ki", "High School DxD 2nd Season", "High School DxD BorN", "High School DxD Third Season"], "top_ids": [11617, 15451, 24703]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "어서 오세요 실력지상주의 교실에", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3402.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Classroom of the Elite", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2788.3, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 4th Season: 2-nensei-hen 1 Gakki"], "top_ids": [35507, 51180, 59708]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "化物语", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 7121.1, "error": null, "top_titles": ["Bakemonogatari", "Ghostory", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5", "Bakemonogatari Special", "Bakemonogatari PV", "漫画 化物語 シャフト制作特別PV", "Bakemonogatari Special PV"], "top_ids": ["3919", "4800", "45896"]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "惡魔高校D×D", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3060.0, "error": null, "top_titles": ["High School DxD", "Highschool DxD", "ハイスクールD×D", "High School DxD New", "High School DxD Dai 2-ki", "High School DxD 2nd Season", "High School DxD BorN", "High School DxD Third Season"], "top_ids": [11617, 15451, 24703]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "めいどいんあびす", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14836.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "终结的炽天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4984.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "終結的熾天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3238.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "化物語", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 5083.2, "error": null, "top_titles": ["Bakemonogatari", "Ghostory", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5", "Bakemonogatari Special", "Bakemonogatari PV", "漫画 化物語 シャフト制作特別PV", "Bakemonogatari Special PV"], "top_ids": ["3919", "4800", "45896"]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "classroom of the elite", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4066.0, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 4th Season: 2-nensei-hen 1 Gakki"], "top_ids": [35507, 51180, 59708]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "终结的炽天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2310.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "化物語", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3121.2, "error": null, "top_titles": ["Bakemonogatari", "Ghostory", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5", "Bakemonogatari Special", "Bakemonogatari PV", "漫画 化物語 シャフト制作特別PV", "Bakemonogatari Special PV"], "top_ids": ["3919", "4800", "45896"]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "恶魔高校D×D", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 8342.8, "error": null, "top_titles": ["High School DxD", "Highschool DxD", "ハイスクールD×D", "High School DxD New", "High School DxD Dai 2-ki", "High School DxD 2nd Season", "High School DxD BorN", "High School DxD Third Season"], "top_ids": [11617, 15451, 24703]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "종말의 세라프", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1810.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "中二病でも恋がしたい!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2686.7, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! Lite"], "top_ids": [14741, 18671, 15687]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "惡魔高校D×D", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2673.7, "error": null, "top_titles": ["High School DxD", "Highschool DxD", "ハイスクールD×D", "High School DxD New", "High School DxD Dai 2-ki", "High School DxD 2nd Season", "High School DxD BorN", "High School DxD Third Season"], "top_ids": [11617, 15451, 24703]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "化物语", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 3079.6, "error": null, "top_titles": ["Bakemonogatari", "Ghostory", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5", "Bakemonogatari Special", "Bakemonogatari PV", "漫画 化物語 シャフト制作特別PV", "Bakemonogatari Special PV"], "top_ids": ["3919", "4800", "45896"]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "中二病也要谈恋爱", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2683.3, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! Lite"], "top_ids": [14741, 18671, 15687]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "来自深渊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12267.0, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "中二病也要談戀愛", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2613.8, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! Ren Lite", "Chuunibyou demo Koi ga Shitai! Ren Specials"], "top_ids": [18671, 21797, 23237]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "괴물 이야기", "hit": false, "position": null, "kind": "", "n_returned": 5, "duration_ms": 3157.7, "error": null, "top_titles": ["My Beautiful Girl Mari", "Je Bul Chal-ssi Iyagi", "Jeh-bool-chal-shee e-ya-gee", "je bul chal ssi i ya gi", "Bollogi Iyagi"], "top_ids": ["1930", "5190", "5006"]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Seraph of the End: Vampire Reign", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 8303.7, "error": null, "top_titles": ["Owari no Seraph", "Seraph of the End: Vampire Reign", "終わりのセラフ", "Owari no Seraph: Owaranai Seraph", "Seraph of the End: Vampire Reign - Owaranai Seraph", "終わりのセラフ「終わらないセラフ」"], "top_ids": [20829, 21483]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "中二病也想談戀愛!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3965.7, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! Ren Lite", "Chuunibyou demo Koi ga Shitai! Ren Specials"], "top_ids": [18671, 21797, 23237]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "來自深淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5045.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "中二病也想谈恋爱!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3739.3, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! Lite"], "top_ids": [14741, 18671, 15687]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "恶魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12333.5, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "seraph of the end vampire reign", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 2613.9, "error": null, "top_titles": ["Owari no Seraph", "Seraph of the End: Vampire Reign", "終わりのセラフ", "Owari no Seraph: Owaranai Seraph", "Seraph of the End: Vampire Reign - Owaranai Seraph", "終わりのセラフ「終わらないセラフ」"], "top_ids": [20829, 21483]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "來自深淵", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6018.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "ja", "backend": "anilist", "variant": "raw", "query": "葬送のフリーレン", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 2443.0, "error": null, "top_titles": ["Sousou no Frieren", "Frieren: Beyond Journey’s End", "葬送のフリーレン", "Sousou no Frieren: ●● no Mahou", "葬送のフリーレン ~●●の魔法~", "Sousou no Frieren: ●● no Mahou Part 2", "葬送のフリーレン ~●●の魔法~ 2クール"], "top_ids": [154587, 170068, 189513]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "메이드 인 어비스", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3266.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Bakemonogatari", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 13958.3, "error": null, "top_titles": ["Bakemonogatari", "Ghostory", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5", "Bakemonogatari Special", "Bakemonogatari PV", "漫画 化物語 シャフト制作特別PV", "Bakemonogatari Special PV"], "top_ids": ["3919", "4800", "45896"]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "하이스쿨 DxD", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 5010.6, "error": null, "top_titles": ["High School DxD Hero", "High School DxD Season 4", "ハイスクールDxD HERO", "High School DxD", "Highschool DxD", "ハイスクールD×D", "High School DxD New", "High School DxD Dai 2-ki"], "top_ids": [34281, 11617, 15451]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "raw", "query": "葬送的芙莉蓮", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2385.8, "error": null, "top_titles": ["Sousou no Frieren", "Frieren: Beyond Journey’s End", "葬送のフリーレン"], "top_ids": [154587]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "High School DxD", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2239.8, "error": null, "top_titles": ["High School DxD", "Highschool DxD", "ハイスクールD×D", "High School DxD Hero", "High School DxD Season 4", "ハイスクールDxD HERO", "High School DxD New", "High School DxD Dai 2-ki"], "top_ids": [11617, 34281, 15451]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_hk_mo", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "葬送的芙莉莲", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2206.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "en", "backend": "kitsu", "variant": "enhance_romaji_to_katakana", "query": "バケモノガタリ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3218.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "bakemonogatari", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2088.5, "error": null, "top_titles": ["Bakemonogatari", "Ghostory", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5", "Bakemonogatari Special", "Bakemonogatari PV", "漫画 化物語 シャフト制作特別PV", "Bakemonogatari Special PV"], "top_ids": ["3919", "4800", "45896"]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "中二病也想談戀愛!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12176.4, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_tw", "backend": "anilist", "variant": "raw", "query": "葬送的芙莉蓮", "hit": true, "position": 0, "kind": "id", "n_returned": 1, "duration_ms": 2868.4, "error": null, "top_titles": ["Sousou no Frieren", "Frieren: Beyond Journey’s End", "葬送のフリーレン"], "top_ids": [154587]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "デュラララ!!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 2645.0, "error": null, "top_titles": ["Durarara!!", "Dhurarara!!", "Dyurarara!!", "Durarara!! Specials", "Durarara!! Episode 12.5", "Durarara!! Episode 25", "Durarara!!x2 Shou", "Durarara!! 2nd Season"], "top_ids": ["4696", "5324", "8314"]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "中二病也想谈恋爱!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3373.3, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! Lite"], "top_ids": [14741, 18671, 15687]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_tw", "backend": "anilist", "variant": "enhance_zh_simplified", "query": "葬送的芙莉莲", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3312.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "high school dxd", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3415.0, "error": null, "top_titles": ["High School DxD", "Highschool DxD", "ハイスクールD×D", "High School DxD Hero", "High School DxD Season 4", "ハイスクールDxD HERO", "High School DxD New", "High School DxD Dai 2-ki"], "top_ids": [11617, 34281, 15451]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "ja", "backend": "kitsu", "variant": "enhance_kata2hira", "query": "でゅららら!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5043.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "ko", "backend": "anilist", "variant": "raw", "query": "장송의 프리렌", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 3964.5, "error": null, "top_titles": ["Sousou no Frieren", "Frieren: Beyond Journey’s End", "葬送のフリーレン", "Sousou no Frieren 2nd Season", "Frieren: Beyond Journey’s End Season 2", "葬送のフリーレン 第2期"], "top_ids": [154587, 182255]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "중2병이라도 사랑이 하고 싶어!", "hit": false, "position": null, "kind": "", "n_returned": 5, "duration_ms": 4796.6, "error": null, "top_titles": ["Nolaehago Sip-eo", "Salangi Ona Bom", "Ijhyeojin Hwangnyeoneun Pyeonghwalobge Salgo Sip-eo"], "top_ids": [42911, 56946, 55723]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Made in Abyss", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 15944.0, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "en", "backend": "anilist", "variant": "raw", "query": "Frieren: Beyond Journey's End", "hit": true, "position": 2, "kind": "id", "n_returned": 6, "duration_ms": 2965.1, "error": null, "top_titles": ["Sousou no Frieren: ●● no Mahou", "葬送のフリーレン ~●●の魔法~", "Sousou no Frieren: ●● no Mahou Part 2", "葬送のフリーレン ~●●の魔法~ 2クール", "Sousou no Frieren", "Frieren: Beyond Journey’s End", "葬送のフリーレン"], "top_ids": [170068, 189513, 154587]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "无头骑士异闻录", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3342.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Love, Chunibyo & Other Delusions!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3867.1, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chuunibyou demo Koi ga Shitai! Depth of Field: Ai to Nikushimi Gekijou", "Takanashi Rikka Kai: Chuunibyou demo Koi ga Shitai! Movie"], "top_ids": [14741, 15879, 19021]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 8630.0, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen OVA", "かぐや様は告らせたい? ~天才たちの恋愛頭脳戦~ OVA", "Kaguya-sama: Love is War OVA", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains"], "top_ids": [40591, 43609, 37999]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "無頭騎士異聞錄", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3594.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "無頭騎士異聞錄 DuRaRaRa!!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 3802.9, "error": null, "top_titles": ["Durarara!!", "Dhurarara!!", "Dyurarara!!", "Durarara!! Specials", "Durarara!! Episode 12.5", "Durarara!! Episode 25", "Durarara!!x2 Shou", "Durarara!! 2nd Season"], "top_ids": ["4696", "5324", "8314"]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "en", "backend": "anilist", "variant": "enhance_lowercase_strip_punct", "query": "frieren beyond journey s end", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 8328.5, "error": null, "top_titles": ["Sousou no Frieren", "Frieren: Beyond Journey’s End", "葬送のフリーレン", "Sousou no Frieren 2nd Season", "Frieren: Beyond Journey’s End Season 2", "葬送のフリーレン 第2期", "Sousou no Frieren: ●● no Mahou Part 2", "葬送のフリーレン ~●●の魔法~ 2クール"], "top_ids": [154587, 182255, 189513]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "love chunibyo other delusions", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 4591.5, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai! Depth of Field: Ai to Nikushimi Gekijou", "Chuunibyou demo Koi ga Shitai!", "Takanashi Rikka Kai: Chuunibyou demo Koi ga Shitai! Movie"], "top_ids": [15879, 14741, 19021]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "ja", "backend": "jikan", "variant": "enhance_jaconv_norm", "query": "かぐや様は告らせたい?ー天才たちの恋愛頭脳戦ー", "hit": true, "position": 3, "kind": "id", "n_returned": 10, "duration_ms": 8624.4, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai Movie", "Kaguya Wants to be Confessed To Movie", "劇場版 かぐや様は告らせたい", "Kaguya-sama wa Kokurasetai: Otona e no Kaidan", "かぐや様は告らせたい 大人への階段", "Kaguya-sama: Love Is War - Stairway to Adulthood", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains"], "top_ids": [63212, 61903, 37999]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "終わりのセラフ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2073.1, "error": null, "top_titles": ["Owari no Seraph", "Owari no Seraph: Kyuuketsuki Shahar", "Owari no Seraph: Nagoya Kessen-hen"], "top_ids": [26243, 31378, 28927]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "无头骑士异闻录 DuRaRaRa!!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 5738.0, "error": null, "top_titles": ["Durarara!!", "Dhurarara!!", "Dyurarara!!", "Durarara!! Specials", "Durarara!! Episode 12.5", "Durarara!! Episode 25", "Durarara!!x2 Shou", "Durarara!! 2nd Season"], "top_ids": ["4696", "5324", "8314"]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "辉夜大小姐想让我告白?~天才们的恋爱头脑战~", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 3342.8, "error": null, "top_titles": ["He Wei Dao x Hui Yeda Xiaojie Xiangyao Wo Gaobai", "Nissin x Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "He Wei Dao x Kaguya-sama: Love Is War?", "Zhongguo Nanhai: Hong Zhanhui", "China Boy: Hong Zhanhui", "中国男孩洪战辉", "Aisanai to Iwaremashitemo: Moto Maou no Hakushaku Reijou wa Kimajime Gunjin ni Ezuke wo Sarete Shiawase ni Naru", "Dinners with My Darling: How the Former Monster King Ate Her Way to Happiness"], "top_ids": [44270, 44373, 64091]} +{"sample_index": 89, "mal_id": 34599, "popularity": 92, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "made in abyss", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 5, "duration_ms": 13915.3, "error": null, "top_titles": ["Made in Abyss: Mezameru Shinpi", "Masayuki Kojima", "Hideyuki Kurata", "Made in Abyss: The Golden City of the Scorching Sun", "Made in Abyss: Dawn of the Deep Soul"], "top_ids": ["37372", "24357", "21731"]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_cn", "backend": "shikimori", "variant": "raw", "query": "终结的炽天使", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6252.2, "error": null, "top_titles": ["Tenshi no Shippo Chu!: Tenshi no Utagoe", "Jintian Kaishi Zuo Mingxing: Tianshi Qingge", "Ramen Tenshi Pretty Menma"], "top_ids": [22231, 58198, 7882]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "輝夜大小姐想讓我告白?~天才們的戀愛頭腦戰~", "hit": true, "position": 7, "kind": "title_exact", "n_returned": 10, "duration_ms": 5166.2, "error": null, "top_titles": ["Kimi no Kokoro wa Kagayaiteru kai?", "Love Live! Sunshine!!", "Love Live! School Idol Project", "Tari Tari: Kumottari, Kagayaitari, Mata Itsuka Utattari", "Tari Tari Special", "Tari Tari: Being Cloudy", "Bleach: Shuku! Rukia Dakkan! Kagayaku! Shinigami Juuban Shoubu! Mitai Shinigami Doon to Misemasu Special", "BLEACH 祝!ルキア奪還!輝け!死神十番勝負!見たい死神ドーンと見せますスペシャル"], "top_ids": [31780, 27419, 54171]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_cn", "backend": "shikimori", "variant": "enhance_zh_traditional", "query": "終結的熾天使", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3321.2, "error": null, "top_titles": ["Ring no Seraph", "Tenshi no Shippo Chu!: Tenshi no Utagoe", "Jintian Kaishi Zuo Mingxing: Tianshi Qingge"], "top_ids": [40410, 22231, 58198]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "無頭騎士異聞錄 DuRaRaRa!!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 11444.9, "error": null, "top_titles": ["Durarara!!", "Dhurarara!!", "Dyurarara!!", "Durarara!! Specials", "Durarara!! Episode 12.5", "Durarara!! Episode 25", "Durarara!!x2 Shou", "Durarara!! 2nd Season"], "top_ids": ["4696", "5324", "8314"]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "終結的熾天使", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3271.4, "error": null, "top_titles": ["Ring no Seraph", "Tenshi no Shippo Chu!: Tenshi no Utagoe", "Jintian Kaishi Zuo Mingxing: Tianshi Qingge"], "top_ids": [40410, 22231, 58198]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "炎炎ノ消防隊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7617.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "终结的炽天使", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2735.3, "error": null, "top_titles": ["Tenshi no Shippo Chu!: Tenshi no Utagoe", "Jintian Kaishi Zuo Mingxing: Tianshi Qingge", "Ramen Tenshi Pretty Menma"], "top_ids": [22231, 58198, 7882]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", "hit": true, "position": 7, "kind": "title_exact", "n_returned": 10, "duration_ms": 13280.7, "error": null, "top_titles": ["Kimi no Kokoro wa Kagayaiteru kai?", "Love Live! Sunshine!!", "Love Live! School Idol Project", "Tari Tari: Kumottari, Kagayaitari, Mata Itsuka Utattari", "Tari Tari Special", "Tari Tari: Being Cloudy", "Bleach: Shuku! Rukia Dakkan! Kagayaku! Shinigami Juuban Shoubu! Mitai Shinigami Doon to Misemasu Special", "BLEACH 祝!ルキア奪還!輝け!死神十番勝負!見たい死神ドーンと見せますスペシャル"], "top_ids": [31780, 27419, 54171]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "終結的熾天使", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6289.7, "error": null, "top_titles": ["Ring no Seraph", "Tenshi no Shippo Chu!: Tenshi no Utagoe", "Jintian Kaishi Zuo Mingxing: Tianshi Qingge"], "top_ids": [40410, 22231, 58198]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "无头骑士异闻录 DuRaRaRa!!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 10484.2, "error": null, "top_titles": ["Durarara!!", "Dhurarara!!", "Dyurarara!!", "Durarara!! Specials", "Durarara!! Episode 12.5", "Durarara!! Episode 25", "Durarara!!x2 Shou", "Durarara!! 2nd Season"], "top_ids": ["4696", "5324", "8314"]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "辉夜姬想让人告白?~天才们的恋爱头脑战~", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 5859.3, "error": null, "top_titles": ["He Wei Dao x Hui Yeda Xiaojie Xiangyao Wo Gaobai", "Nissin x Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "He Wei Dao x Kaguya-sama: Love Is War?", "Zhongguo Nanhai: Hong Zhanhui", "China Boy: Hong Zhanhui", "中国男孩洪战辉", "Aisanai to Iwaremashitemo: Moto Maou no Hakushaku Reijou wa Kimajime Gunjin ni Ezuke wo Sarete Shiawase ni Naru", "Dinners with My Darling: How the Former Monster King Ate Her Way to Happiness"], "top_ids": [44270, 44373, 64091]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", "hit": true, "position": 7, "kind": "title_exact", "n_returned": 10, "duration_ms": 2370.0, "error": null, "top_titles": ["Kimi no Kokoro wa Kagayaiteru kai?", "Love Live! Sunshine!!", "Love Live! School Idol Project", "Tari Tari: Kumottari, Kagayaitari, Mata Itsuka Utattari", "Tari Tari Special", "Tari Tari: Being Cloudy", "Bleach: Shuku! Rukia Dakkan! Kagayaku! Shinigami Juuban Shoubu! Mitai Shinigami Doon to Misemasu Special", "BLEACH 祝!ルキア奪還!輝け!死神十番勝負!見たい死神ドーンと見せますスペシャル"], "top_ids": [31780, 27419, 54171]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "炎炎消防队", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 16330.5, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "辉夜姬想让人告白?~天才们的恋爱头脑战~", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 10, "duration_ms": 3551.2, "error": null, "top_titles": ["He Wei Dao x Hui Yeda Xiaojie Xiangyao Wo Gaobai", "Nissin x Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "He Wei Dao x Kaguya-sama: Love Is War?", "Zhongguo Nanhai: Hong Zhanhui", "China Boy: Hong Zhanhui", "中国男孩洪战辉", "Aisanai to Iwaremashitemo: Moto Maou no Hakushaku Reijou wa Kimajime Gunjin ni Ezuke wo Sarete Shiawase ni Naru", "Dinners with My Darling: How the Former Monster King Ate Her Way to Happiness"], "top_ids": [44270, 44373, 64091]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "炎炎消防隊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4077.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "终结的炽天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12195.6, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "카구야 님은 고백받고 싶어 2기", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4491.1, "error": null, "top_titles": ["Athlon Tobot 2", "Athlon Tobot 2nd Season", "애슬론 또봇 2기", "Bubble Bubble Cook 2nd Season", "보글보글 쿡 2기", "Studio Vandal", "Dudadakung 2nd Season", "두다다쿵 2기"], "top_ids": [52737, 55078, 48170]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "듀라라라!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14276.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "炎炎消防隊", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3967.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "불꽃 소방대", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1806.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Kaguya-sama: Love is War?", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 2388.7, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", "Kaguya-sama wa Kokurasetai: Ultra Romantic", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season"], "top_ids": [37999, 40591, 43608]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Fire Force", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3994.3, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Durarara!!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 7906.7, "error": null, "top_titles": ["Durarara!!", "Dhurarara!!", "Dyurarara!!", "Durarara!! Specials", "Durarara!! Episode 12.5", "Durarara!! Episode 25", "Durarara!!x2 Shou", "Durarara!! 2nd Season"], "top_ids": ["4696", "5324", "8314"]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "종말의 세라프", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12279.7, "error": "ReadTimeout: HTTPSConnectionPool(host='shikimori.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "durarara", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 8, "duration_ms": 3363.1, "error": null, "top_titles": ["Durarara!!", "Dhurarara!!", "Dyurarara!!", "Durarara!! Specials", "Durarara!! Episode 12.5", "Durarara!! Episode 25", "Durarara!!x2 Shou", "Durarara!! 2nd Season"], "top_ids": ["4696", "5324", "8314"]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ハウルの動く城", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3497.0, "error": null, "top_titles": ["Howl's Moving Castle"], "top_ids": ["395"]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Seraph of the End: Vampire Reign", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 8483.0, "error": null, "top_titles": ["Owari no Seraph", "Owari no Seraph: The Beginning of the End", "Owari no Seraph: Kyuuketsuki Shahar"], "top_ids": [26243, 31756, 31378]} +{"sample_index": 90, "mal_id": 38671, "popularity": 93, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "fire force", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 3529.2, "error": null, "top_titles": ["Fire Force", "Tatsuma Minamikawa", "Sei Tsuguta", "Ken'ichirō Yano"], "top_ids": ["32885", "25700", "22952"]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "哈尔的移动城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3623.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "kaguya sama love is war", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 2578.4, "error": null, "top_titles": ["Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", "Kaguya-sama wa Kokurasetai: Ultra Romantic", "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season"], "top_ids": [37999, 40591, 43608]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "哈爾的移動城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4247.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "化物語", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2993.7, "error": null, "top_titles": ["Bakemonogatari", "Ghostory", "Monstory", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5", "Bakemonogatari Special", "Nekomonogatari: Kuro Recap", "Nekomonogatari Black: Tsubasa Family Recap"], "top_ids": [5081, 6948, 38971]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "ja", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "化物语", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 3483.0, "error": null, "top_titles": ["Hua", "化", "Essence", "Bakemonogatari", "Ghostory", "Monstory", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5"], "top_ids": [60498, 5081, 6948]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ハイスクールD×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12322.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "seraph of the end vampire reign", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 11829.8, "error": null, "top_titles": ["Owari no Seraph", "Owari no Seraph: The Beginning of the End", "Owari no Seraph: Kyuuketsuki Shahar"], "top_ids": [26243, 31756, 31378]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "化物语", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 4903.0, "error": null, "top_titles": ["Hua", "化", "Essence", "Bakemonogatari", "Ghostory", "Monstory", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5"], "top_ids": [60498, 5081, 6948]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "哈爾移動城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9357.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "ja", "backend": "shikimori", "variant": "raw", "query": "葬送のフリーレン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2824.0, "error": null, "top_titles": ["Sousou no Frieren", "Sousou no Frieren: ●● no Mahou", "Sousou no Frieren 2nd Season"], "top_ids": [52991, 56885, 59978]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "はいすくーるD×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4167.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "哈尔移动城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2773.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "raw", "query": "葬送的芙莉蓮", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5712.4, "error": null, "top_titles": ["Sousou no Frieren", "Gudu De Lily", "Alita De Shi Lian"], "top_ids": [52991, 43664, 52754]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "化物語", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 7070.4, "error": null, "top_titles": ["Bakemonogatari", "Ghostory", "Monstory", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5", "Bakemonogatari Special", "Nekomonogatari: Kuro Recap", "Nekomonogatari Black: Tsubasa Family Recap"], "top_ids": [5081, 6948, 38971]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "霍爾的移動城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6318.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "化物語", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4107.7, "error": null, "top_titles": ["Bakemonogatari", "Ghostory", "Monstory", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5", "Bakemonogatari Special", "Nekomonogatari: Kuro Recap", "Nekomonogatari Black: Tsubasa Family Recap"], "top_ids": [5081, 6948, 38971]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "恶魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 10276.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_hk_mo", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "葬送的芙莉莲", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 5851.4, "error": null, "top_titles": ["Sousou no Frieren", "Gudu De Lily", "Alita De Shi Lian"], "top_ids": [52991, 43664, 52754]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "化物语", "hit": true, "position": 1, "kind": "id", "n_returned": 10, "duration_ms": 3650.0, "error": null, "top_titles": ["Hua", "化", "Essence", "Bakemonogatari", "Ghostory", "Monstory", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5"], "top_ids": [60498, 5081, 6948]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "霍尔的移动城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5684.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "惡魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3499.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_tw", "backend": "shikimori", "variant": "raw", "query": "葬送的芙莉蓮", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3339.0, "error": null, "top_titles": ["Sousou no Frieren", "Gudu De Lily", "Alita De Shi Lian"], "top_ids": [52991, 43664, 52754]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "하울의 움직이는 성", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 2875.7, "error": null, "top_titles": ["Beauty Water"], "top_ids": ["43898"]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "괴물 이야기", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3945.3, "error": null, "top_titles": ["Je Bul Chal-ssi Iyagi", "Jeh-bool-chal-shee e-ya-gee", "je bul chal ssi i ya gi", "Bollogi Iyagi", "볼로기 이야기", "Bologee Story", "Byulbyul Iyagi", "If You Were Me: Anima Vision (2005)"], "top_ids": [8081, 7504, 7420]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_tw", "backend": "shikimori", "variant": "enhance_zh_simplified", "query": "葬送的芙莉莲", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 4508.6, "error": null, "top_titles": ["Sousou no Frieren", "Gudu De Lily", "Alita De Shi Lian"], "top_ids": [52991, 43664, 52754]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Howl's Moving Castle", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2721.7, "error": null, "top_titles": ["Howl's Moving Castle", "Ghibli Park: Yukkuri Kite Kudasai. Ugokushiro-hen"], "top_ids": ["395", "48540"]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "惡魔高校D×D", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7106.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Bakemonogatari", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 4224.7, "error": null, "top_titles": ["Bakemonogatari", "Ghostory", "Monstory", "Manga \"Bakemonogatari\" Shaft Seisaku Tokubetsu PV", "漫画『化物語』シャフト制作特別PV", "Bakemonogatari Shaft Special Production PV", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5"], "top_ids": [5081, 51068, 6948]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "하이스쿨 DxD", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3423.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "ko", "backend": "shikimori", "variant": "raw", "query": "장송의 프리렌", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6923.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "howl s moving castle", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 3002.9, "error": null, "top_titles": ["Howl's Moving Castle", "Ghibli Park: Yukkuri Kite Kudasai. Ugokushiro-hen"], "top_ids": ["395", "48540"]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "en", "backend": "shikimori", "variant": "raw", "query": "Frieren: Beyond Journey's End", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3921.0, "error": null, "top_titles": ["Sousou no Frieren", "Shin Kidou Senki Gundam Wing: Endless Waltz", "Sousou no Frieren: ●● no Mahou"], "top_ids": [52991, 91, 56885]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "en", "backend": "jikan", "variant": "enhance_romaji_to_katakana", "query": "バケモノガタリ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9873.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "氷菓", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 2, "duration_ms": 2885.6, "error": null, "top_titles": ["Hyouka", "Hyou-ka", "Hyouka: You can't escape", "Hyouka: Motsubeki Mono wa", "Hyouka Episode 11.5", "Hyouka OVA"], "top_ids": ["6686", "6974"]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "en", "backend": "shikimori", "variant": "enhance_lowercase_strip_punct", "query": "frieren beyond journey s end", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 10, "duration_ms": 3935.8, "error": null, "top_titles": ["Sousou no Frieren 2nd Season", "Sousou no Frieren", "Shin Kidou Senki Gundam Wing: Endless Waltz"], "top_ids": [59978, 52991, 91]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "冰菓", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4032.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "bakemonogatari", "hit": true, "position": 0, "kind": "id", "n_returned": 6, "duration_ms": 4978.1, "error": null, "top_titles": ["Bakemonogatari", "Ghostory", "Monstory", "Manga \"Bakemonogatari\" Shaft Seisaku Tokubetsu PV", "漫画『化物語』シャフト制作特別PV", "Bakemonogatari Shaft Special Production PV", "Bakemonogatari Recap", "Bakemonogatari Episode 5.5"], "top_ids": [5081, 51068, 6948]} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "High School DxD", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12367.0, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "デュラララ!!", "hit": true, "position": 0, "kind": "id", "n_returned": 8, "duration_ms": 2806.5, "error": null, "top_titles": ["Durarara!!", "Dhurarara!!", "Dyurarara!!", "Durarara!! Specials", "Durarara!! Episode 12.5", "Durarara!! Episode 25", "Durarara!!x2 Shou", "Durarara!! 2nd Season"], "top_ids": [6746, 8408, 23199]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "冰菓", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8726.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "ja", "backend": "jikan", "variant": "enhance_kata2hira", "query": "でゅららら!!", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 7313.6, "error": null, "top_titles": ["Yuuki Yuuna wa Yuusha de Aru Churutto!", "結城友奈は勇者である ちゅるっと!", "Yuki Yuna is a Hero - Churutto!", "Carole & Tuesday Specials", "Car & Tue", "Carole & Tuesday Mini Series", "Eiga de Toujou! Tamagotchi Dokidoki! Uchuu no Maigotchi!?", "えいがでとーじょー! たまごっち ドキドキ!うちゅーのまいごっち!?"], "top_ids": [42071, 40013, 6518]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "빙과", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4977.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Hyouka", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 2049.2, "error": null, "top_titles": ["Hyouka", "Hyou-ka", "Hyouka: You can't escape", "Hyouka: Motsubeki Mono wa", "Hyouka Episode 11.5", "Hyouka OVA", "Kyoshin to Hyouka no Shiro", "The Giant Gods and the Ice Flower Castle"], "top_ids": ["6686", "6974", "43719"]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "无头骑士异闻录", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6239.5, "error": null, "top_titles": ["Guimi Zhi Zhu: Wu Mian Ren", "Lord of Mysteries: Faceless Arc", "诡秘之主 无面人篇", "Tuer Ni Wudile Xiashan Qu Ba", "徒儿你无敌了下山去吧", "Return of the Invincible Heir"], "top_ids": [63632, 63632, 62786]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "en", "backend": "kitsu", "variant": "enhance_romaji_to_katakana", "query": "ヒョウカ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2692.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 91, "mal_id": 11617, "popularity": 94, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "high school dxd", "hit": true, "position": 3, "kind": "title_exact", "n_returned": 4, "duration_ms": 7048.8, "error": null, "top_titles": ["High School DxD Hero", "Yoshifumi Sueda", "Kenji Konuta", "High School DxD BorN", "Tetsuya Yanagisawa", "Takao Yoshioka", "High School DxD New"], "top_ids": ["20195", "16620", "15204"]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "無頭騎士異聞錄", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3694.1, "error": null, "top_titles": ["Musaigen no Phantom World", "無彩限のファントム・ワールド", "Myriad Colors Phantom World", "Stranger: Mukou Hadan", "ストレンヂア -無皇刃譚-", "Sword of the Stranger", "Kaminaki Sekai no Kamisama Katsudou", "Kamikatsu"], "top_ids": [31442, 2418, 51693]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "hyouka", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 5449.1, "error": null, "top_titles": ["Hyouka", "Hyou-ka", "Hyouka: You can't escape", "Hyouka: Motsubeki Mono wa", "Hyouka Episode 11.5", "Hyouka OVA", "Kyoshin to Hyouka no Shiro", "The Giant Gods and the Ice Flower Castle"], "top_ids": ["6686", "6974", "43719"]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "ようこそ実力至上主義の教室へ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 2359.1, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Welcome to the Classroom of the Elite", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", "You-Zitsu", "Youjitsu"], "top_ids": ["13503", "11001", "45925"]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "無頭騎士異聞錄 DuRaRaRa!!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6548.3, "error": null, "top_titles": ["Durarara!!", "Dhurarara!!", "Dyurarara!!", "Musaigen no Phantom World", "無彩限のファントム・ワールド", "Myriad Colors Phantom World", "Stranger: Mukou Hadan", "ストレンヂア -無皇刃譚-"], "top_ids": [6746, 31442, 2418]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "欢迎来到实力至上主义的教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2641.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "歡迎來到實力至上主義的教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1080.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 11806.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "歡迎來到實力至上主義的教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2204.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "欢迎来到实力至上主义的教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1238.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "无头骑士异闻录 DuRaRaRa!!", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 7610.5, "error": null, "top_titles": ["Guimi Zhi Zhu: Wu Mian Ren", "Lord of Mysteries: Faceless Arc", "诡秘之主 无面人篇", "Tuer Ni Wudile Xiashan Qu Ba", "徒儿你无敌了下山去吧", "Return of the Invincible Heir"], "top_ids": [63632, 63632, 62786]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "ja", "backend": "ann", "variant": "enhance_jaconv_norm", "query": "かぐや様は告らせたい?ー天才たちの恋愛頭脳戦ー", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4668.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "無頭騎士異聞錄 DuRaRaRa!!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3306.2, "error": null, "top_titles": ["Durarara!!", "Dhurarara!!", "Dyurarara!!", "Musaigen no Phantom World", "無彩限のファントム・ワールド", "Myriad Colors Phantom World", "Stranger: Mukou Hadan", "ストレンヂア -無皇刃譚-"], "top_ids": [6746, 31442, 2418]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "无头骑士异闻录 DuRaRaRa!!", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 4842.5, "error": null, "top_titles": ["Guimi Zhi Zhu: Wu Mian Ren", "Lord of Mysteries: Faceless Arc", "诡秘之主 无面人篇", "Tuer Ni Wudile Xiashan Qu Ba", "徒儿你无敌了下山去吧", "Return of the Invincible Heir"], "top_ids": [63632, 63632, 62786]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "歡迎來到實力至上主義的教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9937.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "듀라라라!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4038.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "欢迎来到实力至上主义的教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3787.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "辉夜大小姐想让我告白?~天才们的恋爱头脑战~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13179.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Durarara!!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3177.8, "error": null, "top_titles": ["Durarara!!", "Dhurarara!!", "Dyurarara!!", "Durarara!! Specials", "Durarara!! Episode 12.5", "Durarara!! Episode 25", "Durarara!!x2 Shou", "Durarara!! 2nd Season"], "top_ids": [6746, 8408, 23199]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "어서 오세요 실력지상주의 교실에", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5537.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Classroom of the Elite", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 6395.4, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Welcome to the Classroom of the Elite", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", "You-Zitsu", "Youjitsu"], "top_ids": ["13503", "11001", "45925"]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 16911.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "classroom of the elite", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 5, "duration_ms": 5485.9, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Welcome to the Classroom of the Elite", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", "You-Zitsu", "Youjitsu"], "top_ids": ["13503", "11001", "45925"]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "durarara", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 15716.5, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "中二病でも恋がしたい!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 3864.6, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chu-2 Byo demo Koi ga Shitai!", "Regardless of My Adolescent Delusions of Grandeur", "Chuunibyou demo Koi ga Shitai!: Kirameki no... Slapstick Noel", "Chuunibyou demo Koi ga Shitai! Episode 13", "Chu-2 Byo demo Koi ga Shitai! Episode 13", "Chuunibyou demo Koi ga Shitai! Movie: Take On Me", "Eiga Chuunibyou demo Koi ga Shitai! Take On Me"], "top_ids": ["7160", "7556", "13524"]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ハウルの動く城", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5044.2, "error": null, "top_titles": ["Howl no Ugoku Shiro", "ハウルの動く城", "Howl's Moving Castle", "Fengkuang Dongwu Cheng: Dongwu Cheng Ri Yu Ye", "疯狂动物城:动物城日与夜", "Shanghai Animation Film Studio", "Kimetsu no Yaiba Movie 3: Mugenjou-hen", "劇場版 鬼滅の刃 無限城編"], "top_ids": [431, 62894, 62547]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13470.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "中二病也要谈恋爱", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12171.3, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "哈尔的移动城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12178.7, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "中二病也要談戀愛", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2472.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "哈爾的移動城堡", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 3055.7, "error": null, "top_titles": ["Happy Fuzi", "Ha Pi Fuzi", "Happy Father and Son", "Wangpai Erha", "王牌二哈", "Comedy", "Er Er Er Ha Qi", "二二二哈企"], "top_ids": [45344, 56373, 45241]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "中二病也想談戀愛!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3151.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "카구야 님은 고백받고 싶어 2기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 11352.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "中二病也想谈恋爱!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2746.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Kaguya-sama: Love is War?", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2781.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "中二病也想談戀愛!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3104.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "中二病也想谈恋爱!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1931.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "哈爾移動城堡", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 8653.4, "error": null, "top_titles": ["Happy Fuzi", "Ha Pi Fuzi", "Happy Father and Son", "Wangpai Erha", "王牌二哈", "Comedy", "Er Er Er Ha Qi", "二二二哈企"], "top_ids": [45344, 56373, 45241]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "哈尔移动城堡", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2663.7, "error": null, "top_titles": ["Happy Fuzi", "Ha Pi Fuzi", "Happy Father and Son", "Wangpai Erha", "王牌二哈", "Comedy", "Er Er Er Ha Qi", "二二二哈企"], "top_ids": [45344, 56373, 45241]} +{"sample_index": 92, "mal_id": 40591, "popularity": 96, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "kaguya sama love is war", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4177.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "霍爾的移動城堡", "hit": false, "position": null, "kind": "", "n_returned": 5, "duration_ms": 5795.5, "error": null, "top_titles": ["Ting Ting Zhishi Chengbao Lixian Ji", "婷婷知识城堡历险记", "Fantasy", "Dou Dou Hu Chengbao Zhi Lu", "逗逗虎城堡之旅", "Kids", "Du Du Xiao Bashi: Hanzi Chengbao", "嘟嘟小巴士之汉字城堡"], "top_ids": [46189, 45736, 46724]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "化物語", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3232.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "霍尔的移动城堡", "hit": false, "position": null, "kind": "", "n_returned": 6, "duration_ms": 4185.8, "error": null, "top_titles": ["Shaonian Huo Yuan Jia", "少年霍元甲", "Action", "Ting Ting Zhishi Chengbao Lixian Ji", "婷婷知识城堡历险记", "Fantasy", "Dou Dou Hu Chengbao Zhi Lu", "逗逗虎城堡之旅"], "top_ids": [45718, 46189, 45736]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "중2병이라도 사랑이 하고 싶어!", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 14685.0, "error": null, "top_titles": ["Suki demo Kirai na Ama no Jaku", "Mon oni à moi", "Minha Querida Oni"], "top_ids": ["48617"]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "하울의 움직이는 성", "hit": false, "position": null, "kind": "", "n_returned": 1, "duration_ms": 3727.8, "error": null, "top_titles": ["Gigi Goegoe Sunghyungsoo", "기기괴괴-성형수", "Beauty Water"], "top_ids": [42737]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Love, Chunibyo & Other Delusions!", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2534.7, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chu-2 Byo demo Koi ga Shitai!", "Regardless of My Adolescent Delusions of Grandeur", "Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! 2", "Chu-2 Byo demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai!: Kirameki no... Slapstick Noel", "Chuunibyou demo Koi ga Shitai! Episode 13"], "top_ids": ["7160", "7705", "7556"]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "化物语", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8000.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Howl's Moving Castle", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4028.7, "error": null, "top_titles": ["Howl no Ugoku Shiro", "ハウルの動く城", "Howl's Moving Castle", "Castle", "Avant Garde", "Fantasy", "Kid's Castle", "キッズキャッスル"], "top_ids": [431, 52195, 7451]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "love chunibyo other delusions", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 10, "duration_ms": 2709.7, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chu-2 Byo demo Koi ga Shitai!", "Regardless of My Adolescent Delusions of Grandeur", "Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! 2", "Chu-2 Byo demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai!: Kirameki no... Slapstick Noel", "Chuunibyou demo Koi ga Shitai! Episode 13"], "top_ids": ["7160", "7705", "7556"]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "化物語", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6142.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "終わりのセラフ", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 6, "duration_ms": 1970.8, "error": null, "top_titles": ["Owari no Seraph", "Seraph of the End", "Owari no Seraph: Owaranai Seraph", "Owari no Seraph Omake", "Seraph of the Endless", "Owari no Seraph: Kyuuketsuki Shahar", "Owari no Seraph: Jump Festa 2015 Special", "Owari no Seraph: Vampire Shahar"], "top_ids": ["8736", "10881", "11342"]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "howl s moving castle", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5856.0, "error": null, "top_titles": ["Howl no Ugoku Shiro", "ハウルの動く城", "Howl's Moving Castle", "Omoikkiri Kagaku Adventure Sou Nanda!", "Sou Nanda", "おもいっきり科学アドベンチャー そーなんだ!", "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", "I"], "top_ids": [431, 2742, 53434]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_cn", "backend": "kitsu", "variant": "raw", "query": "终结的炽天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1457.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_cn", "backend": "kitsu", "variant": "enhance_zh_traditional", "query": "終結的熾天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3587.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "終結的熾天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 1398.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "氷菓", "hit": true, "position": 0, "kind": "id", "n_returned": 2, "duration_ms": 8493.3, "error": null, "top_titles": ["Hyouka", "Hyou-ka", "Hyouka: You can't escape", "Hyouka: Motsubeki Mono wa", "Hyouka Episode 11.5", "Hyouka OVA"], "top_ids": [12189, 13469]} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "괴물 이야기", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13250.8, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "冰菓", "hit": false, "position": null, "kind": "", "n_returned": 5, "duration_ms": 2896.5, "error": null, "top_titles": ["Hyouken no Majutsushi ga Sekai wo Suberu", "冰剣の魔術師が世界を統べる", "The Iceblade Sorcerer Shall Rule the World", "Binghuo Mochu", "Bing Huo Mo Chu", "The Magical Chef of Ice and Fire", "Binghuo Mochu 2", "Binghuo Mochu 2nd Season"], "top_ids": [51711, 50581, 53477]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "冰菓", "hit": false, "position": null, "kind": "", "n_returned": 5, "duration_ms": 3119.3, "error": null, "top_titles": ["Hyouken no Majutsushi ga Sekai wo Suberu", "冰剣の魔術師が世界を統べる", "The Iceblade Sorcerer Shall Rule the World", "Binghuo Mochu", "Bing Huo Mo Chu", "The Magical Chef of Ice and Fire", "Binghuo Mochu 2", "Binghuo Mochu 2nd Season"], "top_ids": [51711, 50581, 53477]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "终结的炽天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12186.2, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Bakemonogatari", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 7647.5, "error": null, "top_titles": ["Bakemonogatari", "Tatsuya Oishi", "Akiyuki Simbo"], "top_ids": ["10196"]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "終結的熾天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2321.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "终结的炽天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4585.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "빙과", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12179.0, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 93, "mal_id": 5081, "popularity": 97, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "bakemonogatari", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 8716.2, "error": null, "top_titles": ["Bakemonogatari", "Tatsuya Oishi", "Akiyuki Simbo"], "top_ids": ["10196"]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "종말의 세라프", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2975.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Hyouka", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3086.4, "error": null, "top_titles": ["Hyouka", "Hyou-ka", "Hyouka: You can't escape", "Hyouka: Motsubeki Mono wa", "Hyouka Episode 11.5", "Hyouka OVA", "Kyoshin to Hyouka no Shiro", "The Giant Gods and the Ice Flower Castle"], "top_ids": [12189, 13469, 42057]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "デュラララ!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3974.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Seraph of the End: Vampire Reign", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3429.7, "error": null, "top_titles": ["Owari no Seraph", "Seraph of the End"], "top_ids": ["8736"]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "en", "backend": "jikan", "variant": "enhance_romaji_to_katakana", "query": "ヒョウカ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2368.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "ja", "backend": "ann", "variant": "enhance_kata2hira", "query": "でゅららら!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3761.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "seraph of the end vampire reign", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12277.6, "error": "ReadTimeout: HTTPSConnectionPool(host='kitsu.io', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "hyouka", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14276.1, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "无头骑士异闻录", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12279.7, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "ja", "backend": "kitsu", "variant": "raw", "query": "葬送のフリーレン", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 3353.9, "error": null, "top_titles": ["Sousou no Frieren", "Frieren at the Funeral", "Sousou no Frieren 2nd Season", "Sousou no Frieren: Marumaru no Mahou", "Sousou no Frieren End Mini Anime", "Frieren: Beyond Journey’s End Mini Anime"], "top_ids": ["46474", "49240", "48105"]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "無頭騎士異聞錄 DuRaRaRa!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2522.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "ようこそ実力至上主義の教室へ", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3021.5, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Welcome to the Classroom of the Elite", "You-jitsu", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e PV", "ようこそ実力至上主義の教室へ", "Classroom of the Elite PV", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", "Classroom of the Elite 2nd Season"], "top_ids": [35507, 30813, 51096]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "raw", "query": "葬送的芙莉蓮", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 2728.5, "error": null, "top_titles": ["Sousou no Frieren", "Frieren at the Funeral"], "top_ids": ["46474"]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "欢迎来到实力至上主义的教室", "hit": true, "position": 4, "kind": "id", "n_returned": 10, "duration_ms": 5880.1, "error": null, "top_titles": ["Jingai Kyoushitsu no Ningengirai Kyoushi", "Misanthropic Teacher in Demi-Human Classroom.", "人外教室の人間嫌い教師", "Kuroneko to Majo no Kyoushitsu", "黒猫と魔女の教室", "The Classroom of a Black Cat and a Witch", "Ansatsu Kyoushitsu", "暗殺教室"], "top_ids": [62432, 62171, 24833]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_hk_mo", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "葬送的芙莉莲", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3396.7, "error": null, "top_titles": ["Sousou no Frieren", "Frieren at the Funeral"], "top_ids": ["46474"]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "無頭騎士異聞錄 DuRaRaRa!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7319.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_tw", "backend": "kitsu", "variant": "raw", "query": "葬送的芙莉蓮", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 3576.1, "error": null, "top_titles": ["Sousou no Frieren", "Frieren at the Funeral"], "top_ids": ["46474"]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "歡迎來到實力至上主義的教室", "hit": true, "position": 5, "kind": "id", "n_returned": 10, "duration_ms": 4097.0, "error": null, "top_titles": ["Huanying Lai Dao Duo Li Zhi Jia", "歡迎來到朵莉之家", "Madame: Welcome to Dolly's House", "Jingai Kyoushitsu no Ningengirai Kyoushi", "Misanthropic Teacher in Demi-Human Classroom.", "人外教室の人間嫌い教師", "Kuroneko to Majo no Kyoushitsu", "黒猫と魔女の教室"], "top_ids": [59043, 62432, 62171]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "歡迎來到實力至上主義的教室", "hit": true, "position": 5, "kind": "id", "n_returned": 10, "duration_ms": 3698.4, "error": null, "top_titles": ["Huanying Lai Dao Duo Li Zhi Jia", "歡迎來到朵莉之家", "Madame: Welcome to Dolly's House", "Jingai Kyoushitsu no Ningengirai Kyoushi", "Misanthropic Teacher in Demi-Human Classroom.", "人外教室の人間嫌い教師", "Kuroneko to Majo no Kyoushitsu", "黒猫と魔女の教室"], "top_ids": [59043, 62432, 62171]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_tw", "backend": "kitsu", "variant": "enhance_zh_simplified", "query": "葬送的芙莉莲", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 5125.8, "error": null, "top_titles": ["Sousou no Frieren", "Frieren at the Funeral"], "top_ids": ["46474"]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "欢迎来到实力至上主义的教室", "hit": true, "position": 4, "kind": "id", "n_returned": 10, "duration_ms": 2628.4, "error": null, "top_titles": ["Jingai Kyoushitsu no Ningengirai Kyoushi", "Misanthropic Teacher in Demi-Human Classroom.", "人外教室の人間嫌い教師", "Kuroneko to Majo no Kyoushitsu", "黒猫と魔女の教室", "The Classroom of a Black Cat and a Witch", "Ansatsu Kyoushitsu", "暗殺教室"], "top_ids": [62432, 62171, 24833]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "듀라라라!!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13397.7, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "歡迎來到實力至上主義的教室", "hit": true, "position": 5, "kind": "id", "n_returned": 10, "duration_ms": 4229.0, "error": null, "top_titles": ["Huanying Lai Dao Duo Li Zhi Jia", "歡迎來到朵莉之家", "Madame: Welcome to Dolly's House", "Jingai Kyoushitsu no Ningengirai Kyoushi", "Misanthropic Teacher in Demi-Human Classroom.", "人外教室の人間嫌い教師", "Kuroneko to Majo no Kyoushitsu", "黒猫と魔女の教室"], "top_ids": [59043, 62432, 62171]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "欢迎来到实力至上主义的教室", "hit": true, "position": 4, "kind": "id", "n_returned": 10, "duration_ms": 2476.1, "error": null, "top_titles": ["Jingai Kyoushitsu no Ningengirai Kyoushi", "Misanthropic Teacher in Demi-Human Classroom.", "人外教室の人間嫌い教師", "Kuroneko to Majo no Kyoushitsu", "黒猫と魔女の教室", "The Classroom of a Black Cat and a Witch", "Ansatsu Kyoushitsu", "暗殺教室"], "top_ids": [62432, 62171, 24833]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "ko", "backend": "kitsu", "variant": "raw", "query": "장송의 프리렌", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 9205.6, "error": null, "top_titles": ["Sousou no Frieren", "Frieren at the Funeral"], "top_ids": ["46474"]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "어서 오세요 실력지상주의 교실에", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3284.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "en", "backend": "kitsu", "variant": "raw", "query": "Frieren: Beyond Journey's End", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 3335.9, "error": null, "top_titles": ["Sousou no Frieren", "Frieren at the Funeral", "Sousou no Frieren 2nd Season", "Sousou no Frieren: Marumaru no Mahou", "Sousou no Frieren End Mini Anime", "Frieren: Beyond Journey’s End Mini Anime"], "top_ids": ["46474", "49240", "48105"]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Durarara!!", "hit": true, "position": 6, "kind": "title_exact", "n_returned": 7, "duration_ms": 7856.8, "error": null, "top_titles": ["Durarara!!×2 Shō Gaiden!?", "Takahiro Ōmori", "Noboru Takagi", "Durarara!!×2 Ketsu Gaiden!?", "Durarara!!×2 Ten Gaiden!?", "Ryohgo Narita", "Kari Wahlgren"], "top_ids": ["22239", "22238", "17631"]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Classroom of the Elite", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4332.5, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Welcome to the Classroom of the Elite", "You-jitsu", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", "Classroom of the Elite 2nd Season", "You-jitsu 2nd Season", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", "You-jitsu 3rd Season"], "top_ids": [35507, 51096, 51180]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "en", "backend": "kitsu", "variant": "enhance_lowercase_strip_punct", "query": "frieren beyond journey s end", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 4, "duration_ms": 6209.1, "error": null, "top_titles": ["Sousou no Frieren", "Frieren at the Funeral", "Sousou no Frieren 2nd Season", "Sousou no Frieren: Marumaru no Mahou", "Sousou no Frieren End Mini Anime", "Frieren: Beyond Journey’s End Mini Anime"], "top_ids": ["46474", "49240", "48105"]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "classroom of the elite", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5615.9, "error": null, "top_titles": ["Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", "Welcome to the Classroom of the Elite", "You-jitsu", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", "Classroom of the Elite 2nd Season", "You-jitsu 2nd Season", "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", "You-jitsu 3rd Season"], "top_ids": [35507, 51096, 51180]} +{"sample_index": 94, "mal_id": 6746, "popularity": 98, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "durarara", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3332.6, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "中二病でも恋がしたい!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 6043.7, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chu-2 Byo demo Koi ga Shitai!", "Regardless of My Adolescent Delusions of Grandeur", "Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! 2", "Chu-2 Byo demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! Movie: Take On Me", "Eiga Chuunibyou demo Koi ga Shitai! Take On Me"], "top_ids": [14741, 18671, 35608]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ハウルの動く城", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7170.3, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "中二病也要谈恋爱", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4441.5, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chu-2 Byo demo Koi ga Shitai!", "Regardless of My Adolescent Delusions of Grandeur", "Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! 2", "Chu-2 Byo demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! Movie: Take On Me", "Eiga Chuunibyou demo Koi ga Shitai! Take On Me"], "top_ids": [14741, 18671, 35608]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "中二病也要談戀愛", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4212.9, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chu-2 Byo demo Koi ga Shitai!", "Regardless of My Adolescent Delusions of Grandeur", "Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! 2", "Chu-2 Byo demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! Movie: Take On Me", "Eiga Chuunibyou demo Koi ga Shitai! Take On Me"], "top_ids": [14741, 18671, 35608]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "哈尔的移动城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7997.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "中二病也想談戀愛!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3851.9, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chu-2 Byo demo Koi ga Shitai!", "Regardless of My Adolescent Delusions of Grandeur", "Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! 2", "Chu-2 Byo demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! Movie: Take On Me", "Eiga Chuunibyou demo Koi ga Shitai! Take On Me"], "top_ids": [14741, 18671, 35608]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "中二病也想谈恋爱!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2806.7, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chu-2 Byo demo Koi ga Shitai!", "Regardless of My Adolescent Delusions of Grandeur", "Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! 2", "Chu-2 Byo demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! Movie: Take On Me", "Eiga Chuunibyou demo Koi ga Shitai! Take On Me"], "top_ids": [14741, 18671, 35608]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "中二病也想談戀愛!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 1903.2, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chu-2 Byo demo Koi ga Shitai!", "Regardless of My Adolescent Delusions of Grandeur", "Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! 2", "Chu-2 Byo demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! Movie: Take On Me", "Eiga Chuunibyou demo Koi ga Shitai! Take On Me"], "top_ids": [14741, 18671, 35608]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "中二病也想谈恋爱!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2496.0, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chu-2 Byo demo Koi ga Shitai!", "Regardless of My Adolescent Delusions of Grandeur", "Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! 2", "Chu-2 Byo demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! Movie: Take On Me", "Eiga Chuunibyou demo Koi ga Shitai! Take On Me"], "top_ids": [14741, 18671, 35608]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "哈爾移動城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14009.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "중2병이라도 사랑이 하고 싶어!", "hit": false, "position": null, "kind": "", "n_returned": 3, "duration_ms": 8668.9, "error": null, "top_titles": ["Mawangnim-eun Juggo Sip-eo", "The Demon Queen Has a Death Wish", "The Demon Queen Wants To Die", "Ijhyeojin Hwangnyeoneun Pyeonghwalobge Salgo Sip-eo", "잊혀진 황녀는 평화롭게 살고 싶어", "The Forgotten Princess Just Wants Peace", "Nolaehago Sip-eo", "노래하고 싶어"], "top_ids": [54880, 55723, 42911]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Love, Chunibyo & Other Delusions!", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3247.1, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chu-2 Byo demo Koi ga Shitai!", "Regardless of My Adolescent Delusions of Grandeur", "Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! 2", "Chu-2 Byo demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! Movie: Take On Me", "Eiga Chuunibyou demo Koi ga Shitai! Take On Me"], "top_ids": [14741, 18671, 35608]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "霍爾的移動城堡", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 8256.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "love chunibyo other delusions", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3865.6, "error": null, "top_titles": ["Chuunibyou demo Koi ga Shitai!", "Chu-2 Byo demo Koi ga Shitai!", "Regardless of My Adolescent Delusions of Grandeur", "Chuunibyou demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! 2", "Chu-2 Byo demo Koi ga Shitai! Ren", "Chuunibyou demo Koi ga Shitai! Movie: Take On Me", "Eiga Chuunibyou demo Koi ga Shitai! Take On Me"], "top_ids": [14741, 18671, 35608]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "하울의 움직이는 성", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7411.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Howl's Moving Castle", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 5984.5, "error": null, "top_titles": ["Howl's Moving Castle", "Hayao Miyazaki", "Joe Hisaishi"], "top_ids": ["889"]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "終わりのセラフ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12243.9, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_cn", "backend": "jikan", "variant": "raw", "query": "终结的炽天使", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 6877.4, "error": null, "top_titles": ["Tenshi to Akuma", "天使と悪魔", "Angel & Devil", "Satsuriku no Tenshi", "Angel of Massacre", "Angel of Slaughter", "Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken", "お隣の天使様にいつの間にか駄目人間にされていた件"], "top_ids": [63224, 35994, 50739]} +{"sample_index": 95, "mal_id": 431, "popularity": 99, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "howl s moving castle", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12339.0, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_cn", "backend": "jikan", "variant": "enhance_zh_traditional", "query": "終結的熾天使", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 11447.0, "error": null, "top_titles": ["Ring no Seraph", "Seraphim On The Ring - Mitchie M feat. Hatsune Miku", "Kagamine Rin", "Tenshi to Akuma", "天使と悪魔", "Angel & Devil", "Satsuriku no Tenshi", "Angel of Massacre"], "top_ids": [40410, 63224, 35994]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "終結的熾天使", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 1723.1, "error": null, "top_titles": ["Ring no Seraph", "Seraphim On The Ring - Mitchie M feat. Hatsune Miku", "Kagamine Rin", "Tenshi to Akuma", "天使と悪魔", "Angel & Devil", "Satsuriku no Tenshi", "Angel of Massacre"], "top_ids": [40410, 63224, 35994]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "氷菓", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 10508.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "终结的炽天使", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2877.3, "error": null, "top_titles": ["Tenshi to Akuma", "天使と悪魔", "Angel & Devil", "Satsuriku no Tenshi", "Angel of Massacre", "Angel of Slaughter", "Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken", "お隣の天使様にいつの間にか駄目人間にされていた件"], "top_ids": [63224, 35994, 50739]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "終結的熾天使", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 2290.8, "error": null, "top_titles": ["Ring no Seraph", "Seraphim On The Ring - Mitchie M feat. Hatsune Miku", "Kagamine Rin", "Tenshi to Akuma", "天使と悪魔", "Angel & Devil", "Satsuriku no Tenshi", "Angel of Massacre"], "top_ids": [40410, 63224, 35994]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "冰菓", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14473.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "终结的炽天使", "hit": false, "position": null, "kind": "", "n_returned": 10, "duration_ms": 13497.7, "error": null, "top_titles": ["Tenshi to Akuma", "天使と悪魔", "Angel & Devil", "Satsuriku no Tenshi", "Angel of Massacre", "Angel of Slaughter", "Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken", "お隣の天使様にいつの間にか駄目人間にされていた件"], "top_ids": [63224, 35994, 50739]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "冰菓", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4082.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "빙과", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5004.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "종말의 세라프", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12160.9, "error": "ReadTimeout: HTTPSConnectionPool(host='api.jikan.moe', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Hyouka", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 5467.3, "error": null, "top_titles": ["HYOUKA", "Yasuhiro Takemoto", "Shoji Gatoh"], "top_ids": ["13817"]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Seraph of the End: Vampire Reign", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2439.2, "error": null, "top_titles": ["Owari no Seraph", "Seraph of the End", "終わりのセラフ", "Owari no Seraph: Nagoya Kessen-hen", "Owari no Seraph 2nd Season", "Seraph of the End 2nd Season", "Owari no Seraph: Kyuuketsuki Shahar", "Owari no Seraph: Jump Festa 2015 Special"], "top_ids": [26243, 28927, 31378]} +{"sample_index": 96, "mal_id": 12189, "popularity": 100, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "hyouka", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2691.0, "error": "upstream-decode: [backend=ann reason=upstream-decode] XML parse failed: not well-formed (invalid token): line 6, column 51", "top_titles": [], "top_ids": []} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "ようこそ実力至上主義の教室へ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4784.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "seraph of the end vampire reign", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 4077.1, "error": null, "top_titles": ["Owari no Seraph", "Seraph of the End", "終わりのセラフ", "Owari no Seraph: Nagoya Kessen-hen", "Owari no Seraph 2nd Season", "Seraph of the End 2nd Season", "Owari no Seraph: Kyuuketsuki Shahar", "Owari no Seraph: Jump Festa 2015 Special"], "top_ids": [26243, 28927, 31378]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "欢迎来到实力至上主义的教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3584.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "ja", "backend": "jikan", "variant": "raw", "query": "葬送のフリーレン", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 5412.2, "error": null, "top_titles": ["Sousou no Frieren", "Frieren at the Funeral", "Frieren The Slayer", "Sousou no Frieren: Ougonkyou-hen", "Frieren at the Funeral Season 3", "葬送のフリーレン 黄金郷編"], "top_ids": [52991, 63816, 63816]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "歡迎來到實力至上主義的教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 12812.5, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "raw", "query": "葬送的芙莉蓮", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 8163.5, "error": null, "top_titles": ["Sousou no Frieren: Ougonkyou-hen", "Frieren at the Funeral Season 3", "葬送のフリーレン 黄金郷編", "Sousou no Frieren", "Frieren at the Funeral", "Frieren The Slayer"], "top_ids": [63816, 63816, 52991]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_hk_mo", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "葬送的芙莉莲", "hit": true, "position": 2, "kind": "id", "n_returned": 8, "duration_ms": 6344.1, "error": null, "top_titles": ["Sousou no Frieren: Ougonkyou-hen", "Frieren at the Funeral Season 3", "葬送のフリーレン 黄金郷編", "Sousou no Frieren", "Frieren at the Funeral", "Frieren The Slayer"], "top_ids": [63816, 63816, 52991]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_tw", "backend": "jikan", "variant": "raw", "query": "葬送的芙莉蓮", "hit": true, "position": 2, "kind": "id", "n_returned": 10, "duration_ms": 4405.7, "error": null, "top_titles": ["Sousou no Frieren: Ougonkyou-hen", "Frieren at the Funeral Season 3", "葬送のフリーレン 黄金郷編", "Sousou no Frieren", "Frieren at the Funeral", "Frieren The Slayer"], "top_ids": [63816, 63816, 52991]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_tw", "backend": "jikan", "variant": "enhance_zh_simplified", "query": "葬送的芙莉莲", "hit": true, "position": 2, "kind": "id", "n_returned": 8, "duration_ms": 3035.9, "error": null, "top_titles": ["Sousou no Frieren: Ougonkyou-hen", "Frieren at the Funeral Season 3", "葬送のフリーレン 黄金郷編", "Sousou no Frieren", "Frieren at the Funeral", "Frieren The Slayer"], "top_ids": [63816, 63816, 52991]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "歡迎來到實力至上主義的教室", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 15488.4, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "ko", "backend": "jikan", "variant": "raw", "query": "장송의 프리렌", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2970.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "en", "backend": "jikan", "variant": "raw", "query": "Frieren: Beyond Journey's End", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 2755.6, "error": null, "top_titles": ["Sousou no Frieren", "Frieren at the Funeral", "Frieren The Slayer", "Sousou no Frieren: Ougonkyou-hen", "Frieren at the Funeral Season 3", "葬送のフリーレン 黄金郷編"], "top_ids": [52991, 63816, 63816]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "en", "backend": "jikan", "variant": "enhance_lowercase_strip_punct", "query": "frieren beyond journey s end", "hit": true, "position": 0, "kind": "id", "n_returned": 10, "duration_ms": 3938.0, "error": null, "top_titles": ["Sousou no Frieren", "Frieren at the Funeral", "Frieren The Slayer", "Sousou no Frieren: Ougonkyou-hen", "Frieren at the Funeral Season 3", "葬送のフリーレン 黄金郷編"], "top_ids": [52991, 63816, 63816]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "어서 오세요 실력지상주의 교실에", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13165.8, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Classroom of the Elite", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 4, "duration_ms": 6313.9, "error": null, "top_titles": ["Classroom of the Elite 4th Season: Second Year, First Semester", "Noriyuki Nomata", "Kou Shigenobu", "Classroom of the Elite", "Seiji Kishi", "Hiroyuki Hashimoto", "Classroom of the Elite II"], "top_ids": ["33451", "25413", "25370"]} +{"sample_index": 97, "mal_id": 35507, "popularity": 101, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "classroom of the elite", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 4, "duration_ms": 6643.5, "error": null, "top_titles": ["Classroom of the Elite 4th Season: Second Year, First Semester", "Noriyuki Nomata", "Kou Shigenobu", "Classroom of the Elite", "Seiji Kishi", "Hiroyuki Hashimoto", "Classroom of the Elite II"], "top_ids": ["33451", "25413", "25370"]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "中二病でも恋がしたい!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 4904.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "中二病也要谈恋爱", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14269.3, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "中二病也想談戀愛!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14313.4, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "中二病也想談戀愛!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 13335.5, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "중2병이라도 사랑이 하고 싶어!", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3465.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Love, Chunibyo & Other Delusions!", "hit": true, "position": 1, "kind": "title_exact", "n_returned": 2, "duration_ms": 10033.6, "error": null, "top_titles": ["Love, Chunibyo & Other Delusions! -Heart Throb-", "Tatsuya Ishihara", "Jukki Hanada", "Love, Chunibyo & Other Delusions!"], "top_ids": ["15622", "14448"]} +{"sample_index": 98, "mal_id": 14741, "popularity": 102, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "love chunibyo other delusions", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5416.5, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "終わりのセラフ", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 14022.6, "error": "ReadTimeout: HTTPSConnectionPool(host='cdn.animenewsnetwork.com', port=443): Read timed out. (read timeout=12.0)", "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_cn", "backend": "ann", "variant": "raw", "query": "终结的炽天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6136.3, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "終結的熾天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 6616.1, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "終結的熾天使", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 9081.7, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "종말의 세라프", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 18792.6, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Seraph of the End: Vampire Reign", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 1, "duration_ms": 4512.4, "error": null, "top_titles": ["Seraph of the End: Vampire Reign", "Daisuke Tokudo", "Hiroshi Seko"], "top_ids": ["16357"]} +{"sample_index": 99, "mal_id": 26243, "popularity": 103, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "seraph of the end vampire reign", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3280.0, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "ja", "backend": "ann", "variant": "raw", "query": "葬送のフリーレン", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 7124.8, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_hk_mo", "backend": "ann", "variant": "raw", "query": "葬送的芙莉蓮", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 2990.9, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "zh_tw", "backend": "ann", "variant": "raw", "query": "葬送的芙莉蓮", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3137.4, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "ko", "backend": "ann", "variant": "raw", "query": "장송의 프리렌", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 5325.2, "error": null, "top_titles": [], "top_ids": []} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "en", "backend": "ann", "variant": "raw", "query": "Frieren: Beyond Journey's End", "hit": true, "position": 0, "kind": "title_exact", "n_returned": 3, "duration_ms": 6970.0, "error": null, "top_titles": ["Frieren: Beyond Journey's End", "Tsukasa Abe", "Kanehito Yamada", "Tomoya Kitagawa", "Tomohiro Suzuki", "Keiichirō Saitō"], "top_ids": ["38838", "33628", "26334"]} +{"sample_index": 100, "mal_id": 52991, "popularity": 104, "input_lang": "en", "backend": "ann", "variant": "enhance_lowercase_strip_punct", "query": "frieren beyond journey s end", "hit": false, "position": null, "kind": "", "n_returned": 0, "duration_ms": 3998.8, "error": null, "top_titles": [], "top_ids": []} diff --git a/tools/search_eval/runs/mal_cjk100_runtime/meta.json b/tools/search_eval/runs/mal_cjk100_runtime/meta.json new file mode 100644 index 0000000..c2aa0aa --- /dev/null +++ b/tools/search_eval/runs/mal_cjk100_runtime/meta.json @@ -0,0 +1,4 @@ +{ + "elapsed_seconds": 5026.2, + "proxy_used": true +} diff --git a/tools/search_eval/runs/mal_cjk100_runtime/summary.json b/tools/search_eval/runs/mal_cjk100_runtime/summary.json new file mode 100644 index 0000000..93cbc35 --- /dev/null +++ b/tools/search_eval/runs/mal_cjk100_runtime/summary.json @@ -0,0 +1,1393 @@ +{ + "input_counts": { + "en": 100, + "ja": 100, + "ko": 100, + "zh_cn": 89, + "zh_hk_mo": 54, + "zh_tw": 80 + }, + "rates": { + "en|anilist|enhance_lowercase_strip_punct": { + "n": 100, + "hits": 92, + "errors": 4, + "top1": 88, + "hit_rate": 0.958, + "top1_rate": 0.917 + }, + "en|anilist|enhance_romaji_to_katakana": { + "n": 11, + "hits": 4, + "errors": 0, + "top1": 4, + "hit_rate": 0.364, + "top1_rate": 0.364 + }, + "en|anilist|raw": { + "n": 100, + "hits": 91, + "errors": 7, + "top1": 87, + "hit_rate": 0.978, + "top1_rate": 0.935 + }, + "en|ann|enhance_lowercase_strip_punct": { + "n": 100, + "hits": 47, + "errors": 18, + "top1": 16, + "hit_rate": 0.573, + "top1_rate": 0.195 + }, + "en|ann|raw": { + "n": 100, + "hits": 61, + "errors": 20, + "top1": 25, + "hit_rate": 0.762, + "top1_rate": 0.312 + }, + "en|jikan|enhance_lowercase_strip_punct": { + "n": 100, + "hits": 94, + "errors": 6, + "top1": 92, + "hit_rate": 1.0, + "top1_rate": 0.979 + }, + "en|jikan|enhance_romaji_to_katakana": { + "n": 11, + "hits": 6, + "errors": 0, + "top1": 4, + "hit_rate": 0.545, + "top1_rate": 0.364 + }, + "en|jikan|raw": { + "n": 100, + "hits": 96, + "errors": 4, + "top1": 94, + "hit_rate": 1.0, + "top1_rate": 0.979 + }, + "en|kitsu|enhance_lowercase_strip_punct": { + "n": 100, + "hits": 93, + "errors": 7, + "top1": 92, + "hit_rate": 1.0, + "top1_rate": 0.989 + }, + "en|kitsu|enhance_romaji_to_katakana": { + "n": 11, + "hits": 5, + "errors": 1, + "top1": 4, + "hit_rate": 0.5, + "top1_rate": 0.4 + }, + "en|kitsu|raw": { + "n": 100, + "hits": 94, + "errors": 5, + "top1": 92, + "hit_rate": 0.989, + "top1_rate": 0.968 + }, + "en|shikimori|enhance_lowercase_strip_punct": { + "n": 100, + "hits": 95, + "errors": 5, + "top1": 77, + "hit_rate": 1.0, + "top1_rate": 0.811 + }, + "en|shikimori|enhance_romaji_to_katakana": { + "n": 11, + "hits": 5, + "errors": 2, + "top1": 4, + "hit_rate": 0.556, + "top1_rate": 0.444 + }, + "en|shikimori|raw": { + "n": 100, + "hits": 94, + "errors": 6, + "top1": 92, + "hit_rate": 1.0, + "top1_rate": 0.979 + }, + "ja|anilist|enhance_hira2kata": { + "n": 1, + "hits": 0, + "errors": 0, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "ja|anilist|enhance_jaconv_norm": { + "n": 3, + "hits": 0, + "errors": 0, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "ja|anilist|enhance_kata2hira": { + "n": 37, + "hits": 0, + "errors": 5, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "ja|anilist|enhance_zh_simplified": { + "n": 7, + "hits": 2, + "errors": 1, + "top1": 2, + "hit_rate": 0.333, + "top1_rate": 0.333 + }, + "ja|anilist|enhance_zh_traditional": { + "n": 2, + "hits": 0, + "errors": 0, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "ja|anilist|raw": { + "n": 100, + "hits": 88, + "errors": 4, + "top1": 80, + "hit_rate": 0.917, + "top1_rate": 0.833 + }, + "ja|ann|enhance_hira2kata": { + "n": 1, + "hits": 0, + "errors": 0, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "ja|ann|enhance_jaconv_norm": { + "n": 3, + "hits": 0, + "errors": 0, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "ja|ann|enhance_kata2hira": { + "n": 37, + "hits": 0, + "errors": 5, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "ja|ann|raw": { + "n": 100, + "hits": 0, + "errors": 17, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "ja|jikan|enhance_hira2kata": { + "n": 1, + "hits": 1, + "errors": 0, + "top1": 1, + "hit_rate": 1.0, + "top1_rate": 1.0 + }, + "ja|jikan|enhance_jaconv_norm": { + "n": 3, + "hits": 3, + "errors": 0, + "top1": 1, + "hit_rate": 1.0, + "top1_rate": 0.333 + }, + "ja|jikan|enhance_kata2hira": { + "n": 37, + "hits": 6, + "errors": 4, + "top1": 3, + "hit_rate": 0.182, + "top1_rate": 0.091 + }, + "ja|jikan|enhance_zh_simplified": { + "n": 7, + "hits": 7, + "errors": 0, + "top1": 3, + "hit_rate": 1.0, + "top1_rate": 0.429 + }, + "ja|jikan|enhance_zh_traditional": { + "n": 2, + "hits": 2, + "errors": 0, + "top1": 2, + "hit_rate": 1.0, + "top1_rate": 1.0 + }, + "ja|jikan|raw": { + "n": 100, + "hits": 96, + "errors": 4, + "top1": 90, + "hit_rate": 1.0, + "top1_rate": 0.938 + }, + "ja|kitsu|enhance_hira2kata": { + "n": 1, + "hits": 0, + "errors": 0, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "ja|kitsu|enhance_jaconv_norm": { + "n": 3, + "hits": 1, + "errors": 0, + "top1": 1, + "hit_rate": 0.333, + "top1_rate": 0.333 + }, + "ja|kitsu|enhance_kata2hira": { + "n": 37, + "hits": 3, + "errors": 3, + "top1": 1, + "hit_rate": 0.088, + "top1_rate": 0.029 + }, + "ja|kitsu|enhance_zh_simplified": { + "n": 7, + "hits": 4, + "errors": 0, + "top1": 4, + "hit_rate": 0.571, + "top1_rate": 0.571 + }, + "ja|kitsu|enhance_zh_traditional": { + "n": 2, + "hits": 1, + "errors": 1, + "top1": 1, + "hit_rate": 1.0, + "top1_rate": 1.0 + }, + "ja|kitsu|raw": { + "n": 100, + "hits": 89, + "errors": 6, + "top1": 83, + "hit_rate": 0.947, + "top1_rate": 0.883 + }, + "ja|shikimori|enhance_hira2kata": { + "n": 1, + "hits": 0, + "errors": 0, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "ja|shikimori|enhance_jaconv_norm": { + "n": 3, + "hits": 3, + "errors": 0, + "top1": 3, + "hit_rate": 1.0, + "top1_rate": 1.0 + }, + "ja|shikimori|enhance_kata2hira": { + "n": 37, + "hits": 1, + "errors": 3, + "top1": 1, + "hit_rate": 0.029, + "top1_rate": 0.029 + }, + "ja|shikimori|enhance_zh_simplified": { + "n": 7, + "hits": 7, + "errors": 0, + "top1": 4, + "hit_rate": 1.0, + "top1_rate": 0.571 + }, + "ja|shikimori|enhance_zh_traditional": { + "n": 2, + "hits": 2, + "errors": 0, + "top1": 1, + "hit_rate": 1.0, + "top1_rate": 0.5 + }, + "ja|shikimori|raw": { + "n": 100, + "hits": 96, + "errors": 4, + "top1": 83, + "hit_rate": 1.0, + "top1_rate": 0.865 + }, + "ko|anilist|raw": { + "n": 100, + "hits": 8, + "errors": 8, + "top1": 8, + "hit_rate": 0.087, + "top1_rate": 0.087 + }, + "ko|ann|raw": { + "n": 100, + "hits": 0, + "errors": 18, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "ko|jikan|raw": { + "n": 100, + "hits": 19, + "errors": 5, + "top1": 14, + "hit_rate": 0.2, + "top1_rate": 0.147 + }, + "ko|kitsu|raw": { + "n": 100, + "hits": 8, + "errors": 9, + "top1": 7, + "hit_rate": 0.088, + "top1_rate": 0.077 + }, + "ko|shikimori|raw": { + "n": 100, + "hits": 14, + "errors": 6, + "top1": 9, + "hit_rate": 0.149, + "top1_rate": 0.096 + }, + "zh_cn|anilist|enhance_lowercase_strip_punct": { + "n": 1, + "hits": 1, + "errors": 0, + "top1": 1, + "hit_rate": 1.0, + "top1_rate": 1.0 + }, + "zh_cn|anilist|enhance_zh_simplified": { + "n": 2, + "hits": 1, + "errors": 0, + "top1": 1, + "hit_rate": 0.5, + "top1_rate": 0.5 + }, + "zh_cn|anilist|enhance_zh_traditional": { + "n": 70, + "hits": 6, + "errors": 1, + "top1": 6, + "hit_rate": 0.087, + "top1_rate": 0.087 + }, + "zh_cn|anilist|raw": { + "n": 89, + "hits": 44, + "errors": 9, + "top1": 42, + "hit_rate": 0.55, + "top1_rate": 0.525 + }, + "zh_cn|ann|enhance_lowercase_strip_punct": { + "n": 1, + "hits": 1, + "errors": 0, + "top1": 0, + "hit_rate": 1.0, + "top1_rate": 0.0 + }, + "zh_cn|ann|raw": { + "n": 89, + "hits": 1, + "errors": 12, + "top1": 0, + "hit_rate": 0.013, + "top1_rate": 0.0 + }, + "zh_cn|jikan|enhance_lowercase_strip_punct": { + "n": 1, + "hits": 1, + "errors": 0, + "top1": 1, + "hit_rate": 1.0, + "top1_rate": 1.0 + }, + "zh_cn|jikan|enhance_zh_simplified": { + "n": 2, + "hits": 0, + "errors": 0, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "zh_cn|jikan|enhance_zh_traditional": { + "n": 70, + "hits": 32, + "errors": 6, + "top1": 15, + "hit_rate": 0.5, + "top1_rate": 0.234 + }, + "zh_cn|jikan|raw": { + "n": 89, + "hits": 35, + "errors": 8, + "top1": 11, + "hit_rate": 0.432, + "top1_rate": 0.136 + }, + "zh_cn|kitsu|enhance_lowercase_strip_punct": { + "n": 1, + "hits": 1, + "errors": 0, + "top1": 1, + "hit_rate": 1.0, + "top1_rate": 1.0 + }, + "zh_cn|kitsu|enhance_zh_simplified": { + "n": 2, + "hits": 0, + "errors": 0, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "zh_cn|kitsu|enhance_zh_traditional": { + "n": 70, + "hits": 9, + "errors": 3, + "top1": 6, + "hit_rate": 0.134, + "top1_rate": 0.09 + }, + "zh_cn|kitsu|raw": { + "n": 89, + "hits": 10, + "errors": 10, + "top1": 7, + "hit_rate": 0.127, + "top1_rate": 0.089 + }, + "zh_cn|shikimori|enhance_lowercase_strip_punct": { + "n": 1, + "hits": 1, + "errors": 0, + "top1": 1, + "hit_rate": 1.0, + "top1_rate": 1.0 + }, + "zh_cn|shikimori|enhance_zh_simplified": { + "n": 2, + "hits": 0, + "errors": 0, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "zh_cn|shikimori|enhance_zh_traditional": { + "n": 70, + "hits": 35, + "errors": 7, + "top1": 19, + "hit_rate": 0.556, + "top1_rate": 0.302 + }, + "zh_cn|shikimori|raw": { + "n": 89, + "hits": 34, + "errors": 9, + "top1": 14, + "hit_rate": 0.425, + "top1_rate": 0.175 + }, + "zh_hk_mo|anilist|enhance_lowercase_strip_punct": { + "n": 2, + "hits": 2, + "errors": 0, + "top1": 2, + "hit_rate": 1.0, + "top1_rate": 1.0 + }, + "zh_hk_mo|anilist|enhance_zh_simplified": { + "n": 41, + "hits": 17, + "errors": 2, + "top1": 15, + "hit_rate": 0.436, + "top1_rate": 0.385 + }, + "zh_hk_mo|anilist|enhance_zh_traditional": { + "n": 3, + "hits": 0, + "errors": 0, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "zh_hk_mo|anilist|raw": { + "n": 54, + "hits": 13, + "errors": 7, + "top1": 11, + "hit_rate": 0.277, + "top1_rate": 0.234 + }, + "zh_hk_mo|ann|enhance_lowercase_strip_punct": { + "n": 2, + "hits": 2, + "errors": 0, + "top1": 1, + "hit_rate": 1.0, + "top1_rate": 0.5 + }, + "zh_hk_mo|ann|raw": { + "n": 54, + "hits": 2, + "errors": 6, + "top1": 1, + "hit_rate": 0.042, + "top1_rate": 0.021 + }, + "zh_hk_mo|jikan|enhance_lowercase_strip_punct": { + "n": 2, + "hits": 2, + "errors": 0, + "top1": 2, + "hit_rate": 1.0, + "top1_rate": 1.0 + }, + "zh_hk_mo|jikan|enhance_zh_simplified": { + "n": 41, + "hits": 19, + "errors": 1, + "top1": 9, + "hit_rate": 0.475, + "top1_rate": 0.225 + }, + "zh_hk_mo|jikan|enhance_zh_traditional": { + "n": 3, + "hits": 0, + "errors": 0, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "zh_hk_mo|jikan|raw": { + "n": 54, + "hits": 28, + "errors": 3, + "top1": 17, + "hit_rate": 0.549, + "top1_rate": 0.333 + }, + "zh_hk_mo|kitsu|enhance_lowercase_strip_punct": { + "n": 2, + "hits": 2, + "errors": 0, + "top1": 2, + "hit_rate": 1.0, + "top1_rate": 1.0 + }, + "zh_hk_mo|kitsu|enhance_zh_simplified": { + "n": 41, + "hits": 8, + "errors": 3, + "top1": 8, + "hit_rate": 0.211, + "top1_rate": 0.211 + }, + "zh_hk_mo|kitsu|enhance_zh_traditional": { + "n": 3, + "hits": 0, + "errors": 0, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "zh_hk_mo|kitsu|raw": { + "n": 54, + "hits": 12, + "errors": 4, + "top1": 11, + "hit_rate": 0.24, + "top1_rate": 0.22 + }, + "zh_hk_mo|shikimori|enhance_lowercase_strip_punct": { + "n": 2, + "hits": 2, + "errors": 0, + "top1": 1, + "hit_rate": 1.0, + "top1_rate": 0.5 + }, + "zh_hk_mo|shikimori|enhance_zh_simplified": { + "n": 41, + "hits": 19, + "errors": 2, + "top1": 11, + "hit_rate": 0.487, + "top1_rate": 0.282 + }, + "zh_hk_mo|shikimori|enhance_zh_traditional": { + "n": 3, + "hits": 1, + "errors": 0, + "top1": 0, + "hit_rate": 0.333, + "top1_rate": 0.0 + }, + "zh_hk_mo|shikimori|raw": { + "n": 54, + "hits": 31, + "errors": 0, + "top1": 23, + "hit_rate": 0.574, + "top1_rate": 0.426 + }, + "zh_tw|anilist|enhance_lowercase_strip_punct": { + "n": 2, + "hits": 2, + "errors": 0, + "top1": 2, + "hit_rate": 1.0, + "top1_rate": 1.0 + }, + "zh_tw|anilist|enhance_zh_simplified": { + "n": 59, + "hits": 18, + "errors": 7, + "top1": 18, + "hit_rate": 0.346, + "top1_rate": 0.346 + }, + "zh_tw|anilist|enhance_zh_traditional": { + "n": 3, + "hits": 0, + "errors": 1, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "zh_tw|anilist|raw": { + "n": 80, + "hits": 21, + "errors": 4, + "top1": 19, + "hit_rate": 0.276, + "top1_rate": 0.25 + }, + "zh_tw|ann|enhance_lowercase_strip_punct": { + "n": 2, + "hits": 2, + "errors": 0, + "top1": 1, + "hit_rate": 1.0, + "top1_rate": 0.5 + }, + "zh_tw|ann|raw": { + "n": 80, + "hits": 2, + "errors": 11, + "top1": 1, + "hit_rate": 0.029, + "top1_rate": 0.014 + }, + "zh_tw|jikan|enhance_lowercase_strip_punct": { + "n": 2, + "hits": 2, + "errors": 0, + "top1": 2, + "hit_rate": 1.0, + "top1_rate": 1.0 + }, + "zh_tw|jikan|enhance_zh_simplified": { + "n": 59, + "hits": 29, + "errors": 4, + "top1": 9, + "hit_rate": 0.527, + "top1_rate": 0.164 + }, + "zh_tw|jikan|enhance_zh_traditional": { + "n": 3, + "hits": 0, + "errors": 0, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "zh_tw|jikan|raw": { + "n": 80, + "hits": 40, + "errors": 6, + "top1": 22, + "hit_rate": 0.541, + "top1_rate": 0.297 + }, + "zh_tw|kitsu|enhance_lowercase_strip_punct": { + "n": 2, + "hits": 2, + "errors": 0, + "top1": 2, + "hit_rate": 1.0, + "top1_rate": 1.0 + }, + "zh_tw|kitsu|enhance_zh_simplified": { + "n": 59, + "hits": 12, + "errors": 3, + "top1": 11, + "hit_rate": 0.214, + "top1_rate": 0.196 + }, + "zh_tw|kitsu|enhance_zh_traditional": { + "n": 3, + "hits": 0, + "errors": 0, + "top1": 0, + "hit_rate": 0.0, + "top1_rate": 0.0 + }, + "zh_tw|kitsu|raw": { + "n": 80, + "hits": 18, + "errors": 3, + "top1": 15, + "hit_rate": 0.234, + "top1_rate": 0.195 + }, + "zh_tw|shikimori|enhance_lowercase_strip_punct": { + "n": 2, + "hits": 2, + "errors": 0, + "top1": 1, + "hit_rate": 1.0, + "top1_rate": 0.5 + }, + "zh_tw|shikimori|enhance_zh_simplified": { + "n": 59, + "hits": 29, + "errors": 4, + "top1": 15, + "hit_rate": 0.527, + "top1_rate": 0.273 + }, + "zh_tw|shikimori|enhance_zh_traditional": { + "n": 3, + "hits": 1, + "errors": 0, + "top1": 0, + "hit_rate": 0.333, + "top1_rate": 0.0 + }, + "zh_tw|shikimori|raw": { + "n": 80, + "hits": 40, + "errors": 4, + "top1": 23, + "hit_rate": 0.526, + "top1_rate": 0.303 + } + }, + "rescue": { + "en": { + "anilist": { + "n": 100, + "raw_hit": 91, + "raw_top1": 87, + "raw_zero": 1, + "enhance_any_hit": 98, + "enhance_top1": 96, + "enhance_rescues": 7, + "zero_rescues": 0, + "enhance_zero": 1, + "enhance_harmed": 0, + "raw_hit_rate": 0.91, + "enhance_any_hit_rate": 0.98, + "rescue_rate": 0.778 + }, + "ann": { + "n": 100, + "raw_hit": 61, + "raw_top1": 25, + "raw_zero": 19, + "enhance_any_hit": 74, + "enhance_top1": 30, + "enhance_rescues": 13, + "zero_rescues": 1, + "enhance_zero": 17, + "enhance_harmed": 0, + "raw_hit_rate": 0.61, + "enhance_any_hit_rate": 0.74, + "rescue_rate": 0.333 + }, + "jikan": { + "n": 100, + "raw_hit": 96, + "raw_top1": 94, + "raw_zero": 0, + "enhance_any_hit": 99, + "enhance_top1": 97, + "enhance_rescues": 3, + "zero_rescues": 0, + "enhance_zero": 0, + "enhance_harmed": 0, + "raw_hit_rate": 0.96, + "enhance_any_hit_rate": 0.99, + "rescue_rate": 0.75 + }, + "kitsu": { + "n": 100, + "raw_hit": 94, + "raw_top1": 92, + "raw_zero": 0, + "enhance_any_hit": 99, + "enhance_top1": 97, + "enhance_rescues": 5, + "zero_rescues": 0, + "enhance_zero": 0, + "enhance_harmed": 0, + "raw_hit_rate": 0.94, + "enhance_any_hit_rate": 0.99, + "rescue_rate": 0.833 + }, + "shikimori": { + "n": 100, + "raw_hit": 94, + "raw_top1": 92, + "raw_zero": 0, + "enhance_any_hit": 100, + "enhance_top1": 97, + "enhance_rescues": 6, + "zero_rescues": 0, + "enhance_zero": 0, + "enhance_harmed": 0, + "raw_hit_rate": 0.94, + "enhance_any_hit_rate": 1.0, + "rescue_rate": 1.0 + } + }, + "ja": { + "anilist": { + "n": 100, + "raw_hit": 88, + "raw_top1": 80, + "raw_zero": 6, + "enhance_any_hit": 88, + "enhance_top1": 81, + "enhance_rescues": 0, + "zero_rescues": 0, + "enhance_zero": 4, + "enhance_harmed": 0, + "raw_hit_rate": 0.88, + "enhance_any_hit_rate": 0.88, + "rescue_rate": 0.0 + }, + "ann": { + "n": 100, + "raw_hit": 0, + "raw_top1": 0, + "raw_zero": 83, + "enhance_any_hit": 0, + "enhance_top1": 0, + "enhance_rescues": 0, + "zero_rescues": 0, + "enhance_zero": 80, + "enhance_harmed": 0, + "raw_hit_rate": 0.0, + "enhance_any_hit_rate": 0.0, + "rescue_rate": 0.0 + }, + "jikan": { + "n": 100, + "raw_hit": 96, + "raw_top1": 90, + "raw_zero": 0, + "enhance_any_hit": 96, + "enhance_top1": 90, + "enhance_rescues": 0, + "zero_rescues": 0, + "enhance_zero": 0, + "enhance_harmed": 0, + "raw_hit_rate": 0.96, + "enhance_any_hit_rate": 0.96, + "rescue_rate": 0.0 + }, + "kitsu": { + "n": 100, + "raw_hit": 89, + "raw_top1": 83, + "raw_zero": 0, + "enhance_any_hit": 89, + "enhance_top1": 83, + "enhance_rescues": 0, + "zero_rescues": 0, + "enhance_zero": 0, + "enhance_harmed": 0, + "raw_hit_rate": 0.89, + "enhance_any_hit_rate": 0.89, + "rescue_rate": 0.0 + }, + "shikimori": { + "n": 100, + "raw_hit": 96, + "raw_top1": 83, + "raw_zero": 0, + "enhance_any_hit": 96, + "enhance_top1": 83, + "enhance_rescues": 0, + "zero_rescues": 0, + "enhance_zero": 0, + "enhance_harmed": 0, + "raw_hit_rate": 0.96, + "enhance_any_hit_rate": 0.96, + "rescue_rate": 0.0 + } + }, + "ko": { + "anilist": { + "n": 100, + "raw_hit": 8, + "raw_top1": 8, + "raw_zero": 81, + "enhance_any_hit": 8, + "enhance_top1": 8, + "enhance_rescues": 0, + "zero_rescues": 0, + "enhance_zero": 81, + "enhance_harmed": 0, + "raw_hit_rate": 0.08, + "enhance_any_hit_rate": 0.08, + "rescue_rate": 0.0 + }, + "ann": { + "n": 100, + "raw_hit": 0, + "raw_top1": 0, + "raw_zero": 82, + "enhance_any_hit": 0, + "enhance_top1": 0, + "enhance_rescues": 0, + "zero_rescues": 0, + "enhance_zero": 82, + "enhance_harmed": 0, + "raw_hit_rate": 0.0, + "enhance_any_hit_rate": 0.0, + "rescue_rate": 0.0 + }, + "jikan": { + "n": 100, + "raw_hit": 19, + "raw_top1": 14, + "raw_zero": 52, + "enhance_any_hit": 19, + "enhance_top1": 14, + "enhance_rescues": 0, + "zero_rescues": 0, + "enhance_zero": 52, + "enhance_harmed": 0, + "raw_hit_rate": 0.19, + "enhance_any_hit_rate": 0.19, + "rescue_rate": 0.0 + }, + "kitsu": { + "n": 100, + "raw_hit": 8, + "raw_top1": 7, + "raw_zero": 63, + "enhance_any_hit": 8, + "enhance_top1": 7, + "enhance_rescues": 0, + "zero_rescues": 0, + "enhance_zero": 63, + "enhance_harmed": 0, + "raw_hit_rate": 0.08, + "enhance_any_hit_rate": 0.08, + "rescue_rate": 0.0 + }, + "shikimori": { + "n": 100, + "raw_hit": 14, + "raw_top1": 9, + "raw_zero": 48, + "enhance_any_hit": 14, + "enhance_top1": 9, + "enhance_rescues": 0, + "zero_rescues": 0, + "enhance_zero": 48, + "enhance_harmed": 0, + "raw_hit_rate": 0.14, + "enhance_any_hit_rate": 0.14, + "rescue_rate": 0.0 + } + }, + "zh_cn": { + "anilist": { + "n": 89, + "raw_hit": 44, + "raw_top1": 42, + "raw_zero": 33, + "enhance_any_hit": 49, + "enhance_top1": 47, + "enhance_rescues": 5, + "zero_rescues": 2, + "enhance_zero": 31, + "enhance_harmed": 0, + "raw_hit_rate": 0.494, + "enhance_any_hit_rate": 0.551, + "rescue_rate": 0.111 + }, + "ann": { + "n": 89, + "raw_hit": 1, + "raw_top1": 0, + "raw_zero": 76, + "enhance_any_hit": 1, + "enhance_top1": 0, + "enhance_rescues": 0, + "zero_rescues": 0, + "enhance_zero": 76, + "enhance_harmed": 0, + "raw_hit_rate": 0.011, + "enhance_any_hit_rate": 0.011, + "rescue_rate": 0.0 + }, + "jikan": { + "n": 89, + "raw_hit": 35, + "raw_top1": 11, + "raw_zero": 1, + "enhance_any_hit": 40, + "enhance_top1": 19, + "enhance_rescues": 5, + "zero_rescues": 0, + "enhance_zero": 1, + "enhance_harmed": 0, + "raw_hit_rate": 0.393, + "enhance_any_hit_rate": 0.449, + "rescue_rate": 0.093 + }, + "kitsu": { + "n": 89, + "raw_hit": 10, + "raw_top1": 7, + "raw_zero": 61, + "enhance_any_hit": 13, + "enhance_top1": 10, + "enhance_rescues": 3, + "zero_rescues": 2, + "enhance_zero": 56, + "enhance_harmed": 0, + "raw_hit_rate": 0.112, + "enhance_any_hit_rate": 0.146, + "rescue_rate": 0.038 + }, + "shikimori": { + "n": 89, + "raw_hit": 34, + "raw_top1": 14, + "raw_zero": 0, + "enhance_any_hit": 41, + "enhance_top1": 21, + "enhance_rescues": 7, + "zero_rescues": 0, + "enhance_zero": 0, + "enhance_harmed": 0, + "raw_hit_rate": 0.382, + "enhance_any_hit_rate": 0.461, + "rescue_rate": 0.127 + } + }, + "zh_hk_mo": { + "anilist": { + "n": 54, + "raw_hit": 13, + "raw_top1": 11, + "raw_zero": 34, + "enhance_any_hit": 27, + "enhance_top1": 23, + "enhance_rescues": 14, + "zero_rescues": 12, + "enhance_zero": 20, + "enhance_harmed": 0, + "raw_hit_rate": 0.241, + "enhance_any_hit_rate": 0.5, + "rescue_rate": 0.341 + }, + "ann": { + "n": 54, + "raw_hit": 2, + "raw_top1": 1, + "raw_zero": 46, + "enhance_any_hit": 2, + "enhance_top1": 1, + "enhance_rescues": 0, + "zero_rescues": 0, + "enhance_zero": 46, + "enhance_harmed": 0, + "raw_hit_rate": 0.037, + "enhance_any_hit_rate": 0.037, + "rescue_rate": 0.0 + }, + "jikan": { + "n": 54, + "raw_hit": 28, + "raw_top1": 17, + "raw_zero": 1, + "enhance_any_hit": 30, + "enhance_top1": 19, + "enhance_rescues": 2, + "zero_rescues": 0, + "enhance_zero": 0, + "enhance_harmed": 0, + "raw_hit_rate": 0.519, + "enhance_any_hit_rate": 0.556, + "rescue_rate": 0.077 + }, + "kitsu": { + "n": 54, + "raw_hit": 12, + "raw_top1": 11, + "raw_zero": 36, + "enhance_any_hit": 14, + "enhance_top1": 13, + "enhance_rescues": 2, + "zero_rescues": 2, + "enhance_zero": 32, + "enhance_harmed": 0, + "raw_hit_rate": 0.222, + "enhance_any_hit_rate": 0.259, + "rescue_rate": 0.048 + }, + "shikimori": { + "n": 54, + "raw_hit": 31, + "raw_top1": 23, + "raw_zero": 0, + "enhance_any_hit": 31, + "enhance_top1": 23, + "enhance_rescues": 0, + "zero_rescues": 0, + "enhance_zero": 0, + "enhance_harmed": 0, + "raw_hit_rate": 0.574, + "enhance_any_hit_rate": 0.574, + "rescue_rate": 0.0 + } + }, + "zh_tw": { + "anilist": { + "n": 80, + "raw_hit": 21, + "raw_top1": 19, + "raw_zero": 54, + "enhance_any_hit": 35, + "enhance_top1": 33, + "enhance_rescues": 14, + "zero_rescues": 12, + "enhance_zero": 38, + "enhance_harmed": 0, + "raw_hit_rate": 0.263, + "enhance_any_hit_rate": 0.438, + "rescue_rate": 0.237 + }, + "ann": { + "n": 80, + "raw_hit": 2, + "raw_top1": 1, + "raw_zero": 67, + "enhance_any_hit": 2, + "enhance_top1": 1, + "enhance_rescues": 0, + "zero_rescues": 0, + "enhance_zero": 67, + "enhance_harmed": 0, + "raw_hit_rate": 0.025, + "enhance_any_hit_rate": 0.025, + "rescue_rate": 0.0 + }, + "jikan": { + "n": 80, + "raw_hit": 40, + "raw_top1": 22, + "raw_zero": 1, + "enhance_any_hit": 43, + "enhance_top1": 26, + "enhance_rescues": 3, + "zero_rescues": 0, + "enhance_zero": 0, + "enhance_harmed": 0, + "raw_hit_rate": 0.5, + "enhance_any_hit_rate": 0.537, + "rescue_rate": 0.075 + }, + "kitsu": { + "n": 80, + "raw_hit": 18, + "raw_top1": 15, + "raw_zero": 49, + "enhance_any_hit": 20, + "enhance_top1": 17, + "enhance_rescues": 2, + "zero_rescues": 2, + "enhance_zero": 44, + "enhance_harmed": 0, + "raw_hit_rate": 0.225, + "enhance_any_hit_rate": 0.25, + "rescue_rate": 0.032 + }, + "shikimori": { + "n": 80, + "raw_hit": 40, + "raw_top1": 23, + "raw_zero": 0, + "enhance_any_hit": 42, + "enhance_top1": 25, + "enhance_rescues": 2, + "zero_rescues": 0, + "enhance_zero": 0, + "enhance_harmed": 0, + "raw_hit_rate": 0.5, + "enhance_any_hit_rate": 0.525, + "rescue_rate": 0.05 + } + } + }, + "overall": { + "anilist": { + "n": 523, + "raw_hit": 265, + "enhance_any_hit": 305, + "enhance_rescues": 40, + "zero_rescues": 26, + "raw_zero": 209, + "enhance_zero": 175 + }, + "ann": { + "n": 523, + "raw_hit": 66, + "enhance_any_hit": 79, + "enhance_rescues": 13, + "zero_rescues": 1, + "raw_zero": 373, + "enhance_zero": 368 + }, + "jikan": { + "n": 523, + "raw_hit": 314, + "enhance_any_hit": 327, + "enhance_rescues": 13, + "zero_rescues": 0, + "raw_zero": 55, + "enhance_zero": 53 + }, + "kitsu": { + "n": 523, + "raw_hit": 231, + "enhance_any_hit": 243, + "enhance_rescues": 12, + "zero_rescues": 6, + "raw_zero": 209, + "enhance_zero": 195 + }, + "shikimori": { + "n": 523, + "raw_hit": 309, + "enhance_any_hit": 324, + "enhance_rescues": 15, + "zero_rescues": 0, + "raw_zero": 48, + "enhance_zero": 48 + } + }, + "variant_rescue": { + "en|anilist|enhance_lowercase_strip_punct": { + "rescues": 7 + }, + "en|ann|enhance_lowercase_strip_punct": { + "rescues": 13 + }, + "en|jikan|enhance_lowercase_strip_punct": { + "rescues": 3 + }, + "en|kitsu|enhance_lowercase_strip_punct": { + "rescues": 5 + }, + "en|shikimori|enhance_lowercase_strip_punct": { + "rescues": 6 + }, + "zh_cn|anilist|enhance_lowercase_strip_punct": { + "rescues": 1 + }, + "zh_cn|anilist|enhance_zh_traditional": { + "rescues": 4 + }, + "zh_cn|jikan|enhance_zh_traditional": { + "rescues": 5 + }, + "zh_cn|kitsu|enhance_zh_traditional": { + "rescues": 3 + }, + "zh_cn|shikimori|enhance_zh_traditional": { + "rescues": 7 + }, + "zh_hk_mo|anilist|enhance_zh_simplified": { + "rescues": 14 + }, + "zh_hk_mo|jikan|enhance_lowercase_strip_punct": { + "rescues": 1 + }, + "zh_hk_mo|jikan|enhance_zh_simplified": { + "rescues": 1 + }, + "zh_hk_mo|kitsu|enhance_zh_simplified": { + "rescues": 2 + }, + "zh_tw|anilist|enhance_zh_simplified": { + "rescues": 14 + }, + "zh_tw|jikan|enhance_lowercase_strip_punct": { + "rescues": 1 + }, + "zh_tw|jikan|enhance_zh_simplified": { + "rescues": 2 + }, + "zh_tw|kitsu|enhance_zh_simplified": { + "rescues": 2 + }, + "zh_tw|shikimori|enhance_lowercase_strip_punct": { + "rescues": 1 + }, + "zh_tw|shikimori|enhance_zh_simplified": { + "rescues": 1 + } + } +} diff --git a/tools/search_eval/runs/mal_cjk100_runtime/summary.md b/tools/search_eval/runs/mal_cjk100_runtime/summary.md new file mode 100644 index 0000000..0d6c1e6 --- /dev/null +++ b/tools/search_eval/runs/mal_cjk100_runtime/summary.md @@ -0,0 +1,199 @@ +# MAL Multilingual Anime100 Search Enhancement Evaluation + +- samples: 100 +- cells: 4137 +- proxy used: True +- input languages: ja, zh_cn, zh_hk_mo, zh_tw, ko, en +- baseline query: the representative real title for that input language; CJK scripts are not merged +- strict hit: backend ID match or exact known title/alias match; substring-only matches are excluded from rescue metrics +- raw hit: the unmodified input query found the target under the strict-hit rule +- raw + enhance hit: raw or any current runtime enhance suggestion found the target under the strict-hit rule +- enhance rescue: raw missed but at least one current runtime enhance suggestion found the target under the strict-hit rule +- zero rescue: raw returned no rows, and at least one current runtime enhance suggestion found the target under the strict-hit rule +- rescue rate: enhance rescues divided by raw misses for that row +- zero returned: upstream returned no rows, distinct from returning wrong rows +- variant set: current runtime enhance output only; known aliases are used only for scoring the returned rows + +## Overall Backend Rescue + +| backend | cells | raw hit | raw zero | raw + enhance hit | enhance rescue | zero rescue | rescue rate | enhance zero | +|---|---:|---:|---:|---:|---:|---:|---:|---:| +| `anilist` | 523 | 265 (51%) | 209 | 305 (58%) | +40 | +26 | 16% | 175 | +| `ann` | 523 | 66 (13%) | 373 | 79 (15%) | +13 | +1 | 3% | 368 | +| `jikan` | 523 | 314 (60%) | 55 | 327 (63%) | +13 | +0 | 6% | 53 | +| `kitsu` | 523 | 231 (44%) | 209 | 243 (46%) | +12 | +6 | 4% | 195 | +| `shikimori` | 523 | 309 (59%) | 48 | 324 (62%) | +15 | +0 | 7% | 48 | + +## Findings + +* English improvement is mostly punctuation and case cleanup. The current runtime rescues raw misses via `enhance_lowercase_strip_punct` on every measured backend; broad lead-token probes are intentionally excluded from this report. +* Chinese improvement is directional and backend-specific. Simplified input is helped mainly by `zh_traditional`; Traditional/Hong Kong/Macau/Taiwan input is helped mainly by `zh_simplified`, with AniList showing the largest rescue counts. +* Japanese kana input is not mixed into generic Han transliteration. Pure-Han Japanese titles are script-ambiguous at runtime and may receive Chinese script folds, but those variants produced no strict Japanese raw-miss rescues. +* Korean input remains weak across the measured anime backends. The current runtime keeps Korean anime suggestions to raw because deterministic Hangul romanization did not prove a reliable strict raw-miss rescue path in this run. +* Hit-zero improvement is limited and measurable: 33/894 raw zero-return cells were rescued by current runtime variants. ANN is the main remaining low-recall cell, and adding more CJK transliteration mostly added noise rather than targeted successful queries. + +## Strict Rescue By Variant + +| input | backend | variant | strict rescues | +|---|---|---|---:| +| `en` | `anilist` | `enhance_lowercase_strip_punct` | 7 | +| `en` | `ann` | `enhance_lowercase_strip_punct` | 13 | +| `en` | `jikan` | `enhance_lowercase_strip_punct` | 3 | +| `en` | `kitsu` | `enhance_lowercase_strip_punct` | 5 | +| `en` | `shikimori` | `enhance_lowercase_strip_punct` | 6 | +| `zh_cn` | `anilist` | `enhance_lowercase_strip_punct` | 1 | +| `zh_cn` | `anilist` | `enhance_zh_traditional` | 4 | +| `zh_cn` | `jikan` | `enhance_zh_traditional` | 5 | +| `zh_cn` | `kitsu` | `enhance_zh_traditional` | 3 | +| `zh_cn` | `shikimori` | `enhance_zh_traditional` | 7 | +| `zh_hk_mo` | `anilist` | `enhance_zh_simplified` | 14 | +| `zh_hk_mo` | `jikan` | `enhance_lowercase_strip_punct` | 1 | +| `zh_hk_mo` | `jikan` | `enhance_zh_simplified` | 1 | +| `zh_hk_mo` | `kitsu` | `enhance_zh_simplified` | 2 | +| `zh_tw` | `anilist` | `enhance_zh_simplified` | 14 | +| `zh_tw` | `jikan` | `enhance_lowercase_strip_punct` | 1 | +| `zh_tw` | `jikan` | `enhance_zh_simplified` | 2 | +| `zh_tw` | `kitsu` | `enhance_zh_simplified` | 2 | +| `zh_tw` | `shikimori` | `enhance_lowercase_strip_punct` | 1 | +| `zh_tw` | `shikimori` | `enhance_zh_simplified` | 1 | + +## Language Matrix + +| input | backend | samples | raw hit | raw top1 | raw zero | raw + enhance hit | enhance top1 | enhance rescue | zero rescue | rescue rate | enhance zero | +|---|---|---:|---:|---:|---:|---:|---:|---:|---:|---:|---:| +| `en` | `anilist` | 100 | 91 (91%) | 87 | 1 | 98 (98%) | 96 | +7 | +0 | 78% | 1 | +| `en` | `ann` | 100 | 61 (61%) | 25 | 19 | 74 (74%) | 30 | +13 | +1 | 33% | 17 | +| `en` | `jikan` | 100 | 96 (96%) | 94 | 0 | 99 (99%) | 97 | +3 | +0 | 75% | 0 | +| `en` | `kitsu` | 100 | 94 (94%) | 92 | 0 | 99 (99%) | 97 | +5 | +0 | 83% | 0 | +| `en` | `shikimori` | 100 | 94 (94%) | 92 | 0 | 100 (100%) | 97 | +6 | +0 | 100% | 0 | +| `ja` | `anilist` | 100 | 88 (88%) | 80 | 6 | 88 (88%) | 81 | +0 | +0 | 0% | 4 | +| `ja` | `ann` | 100 | 0 (0%) | 0 | 83 | 0 (0%) | 0 | +0 | +0 | 0% | 80 | +| `ja` | `jikan` | 100 | 96 (96%) | 90 | 0 | 96 (96%) | 90 | +0 | +0 | 0% | 0 | +| `ja` | `kitsu` | 100 | 89 (89%) | 83 | 0 | 89 (89%) | 83 | +0 | +0 | 0% | 0 | +| `ja` | `shikimori` | 100 | 96 (96%) | 83 | 0 | 96 (96%) | 83 | +0 | +0 | 0% | 0 | +| `ko` | `anilist` | 100 | 8 (8%) | 8 | 81 | 8 (8%) | 8 | +0 | +0 | 0% | 81 | +| `ko` | `ann` | 100 | 0 (0%) | 0 | 82 | 0 (0%) | 0 | +0 | +0 | 0% | 82 | +| `ko` | `jikan` | 100 | 19 (19%) | 14 | 52 | 19 (19%) | 14 | +0 | +0 | 0% | 52 | +| `ko` | `kitsu` | 100 | 8 (8%) | 7 | 63 | 8 (8%) | 7 | +0 | +0 | 0% | 63 | +| `ko` | `shikimori` | 100 | 14 (14%) | 9 | 48 | 14 (14%) | 9 | +0 | +0 | 0% | 48 | +| `zh_cn` | `anilist` | 89 | 44 (49%) | 42 | 33 | 49 (55%) | 47 | +5 | +2 | 11% | 31 | +| `zh_cn` | `ann` | 89 | 1 (1%) | 0 | 76 | 1 (1%) | 0 | +0 | +0 | 0% | 76 | +| `zh_cn` | `jikan` | 89 | 35 (39%) | 11 | 1 | 40 (45%) | 19 | +5 | +0 | 9% | 1 | +| `zh_cn` | `kitsu` | 89 | 10 (11%) | 7 | 61 | 13 (15%) | 10 | +3 | +2 | 4% | 56 | +| `zh_cn` | `shikimori` | 89 | 34 (38%) | 14 | 0 | 41 (46%) | 21 | +7 | +0 | 13% | 0 | +| `zh_hk_mo` | `anilist` | 54 | 13 (24%) | 11 | 34 | 27 (50%) | 23 | +14 | +12 | 34% | 20 | +| `zh_hk_mo` | `ann` | 54 | 2 (4%) | 1 | 46 | 2 (4%) | 1 | +0 | +0 | 0% | 46 | +| `zh_hk_mo` | `jikan` | 54 | 28 (52%) | 17 | 1 | 30 (56%) | 19 | +2 | +0 | 8% | 0 | +| `zh_hk_mo` | `kitsu` | 54 | 12 (22%) | 11 | 36 | 14 (26%) | 13 | +2 | +2 | 5% | 32 | +| `zh_hk_mo` | `shikimori` | 54 | 31 (57%) | 23 | 0 | 31 (57%) | 23 | +0 | +0 | 0% | 0 | +| `zh_tw` | `anilist` | 80 | 21 (26%) | 19 | 54 | 35 (44%) | 33 | +14 | +12 | 24% | 38 | +| `zh_tw` | `ann` | 80 | 2 (2%) | 1 | 67 | 2 (2%) | 1 | +0 | +0 | 0% | 67 | +| `zh_tw` | `jikan` | 80 | 40 (50%) | 22 | 1 | 43 (54%) | 26 | +3 | +0 | 8% | 0 | +| `zh_tw` | `kitsu` | 80 | 18 (22%) | 15 | 49 | 20 (25%) | 17 | +2 | +2 | 3% | 44 | +| `zh_tw` | `shikimori` | 80 | 40 (50%) | 23 | 0 | 42 (52%) | 25 | +2 | +0 | 5% | 0 | + +## Variant Hit Rates + +| input | backend | variant | n | hits | hit rate | top1 | errors | +|---|---|---|---:|---:|---:|---:|---:| +| `en` | `anilist` | `enhance_lowercase_strip_punct` | 100 | 92 | 96% | 88 | 4 | +| `en` | `anilist` | `enhance_romaji_to_katakana` | 11 | 4 | 36% | 4 | 0 | +| `en` | `anilist` | `raw` | 100 | 91 | 98% | 87 | 7 | +| `en` | `ann` | `enhance_lowercase_strip_punct` | 100 | 47 | 57% | 16 | 18 | +| `en` | `ann` | `raw` | 100 | 61 | 76% | 25 | 20 | +| `en` | `jikan` | `enhance_lowercase_strip_punct` | 100 | 94 | 100% | 92 | 6 | +| `en` | `jikan` | `enhance_romaji_to_katakana` | 11 | 6 | 55% | 4 | 0 | +| `en` | `jikan` | `raw` | 100 | 96 | 100% | 94 | 4 | +| `en` | `kitsu` | `enhance_lowercase_strip_punct` | 100 | 93 | 100% | 92 | 7 | +| `en` | `kitsu` | `enhance_romaji_to_katakana` | 11 | 5 | 50% | 4 | 1 | +| `en` | `kitsu` | `raw` | 100 | 94 | 99% | 92 | 5 | +| `en` | `shikimori` | `enhance_lowercase_strip_punct` | 100 | 95 | 100% | 77 | 5 | +| `en` | `shikimori` | `enhance_romaji_to_katakana` | 11 | 5 | 56% | 4 | 2 | +| `en` | `shikimori` | `raw` | 100 | 94 | 100% | 92 | 6 | +| `ja` | `anilist` | `enhance_hira2kata` | 1 | 0 | 0% | 0 | 0 | +| `ja` | `anilist` | `enhance_jaconv_norm` | 3 | 0 | 0% | 0 | 0 | +| `ja` | `anilist` | `enhance_kata2hira` | 37 | 0 | 0% | 0 | 5 | +| `ja` | `anilist` | `enhance_zh_simplified` | 7 | 2 | 33% | 2 | 1 | +| `ja` | `anilist` | `enhance_zh_traditional` | 2 | 0 | 0% | 0 | 0 | +| `ja` | `anilist` | `raw` | 100 | 88 | 92% | 80 | 4 | +| `ja` | `ann` | `enhance_hira2kata` | 1 | 0 | 0% | 0 | 0 | +| `ja` | `ann` | `enhance_jaconv_norm` | 3 | 0 | 0% | 0 | 0 | +| `ja` | `ann` | `enhance_kata2hira` | 37 | 0 | 0% | 0 | 5 | +| `ja` | `ann` | `raw` | 100 | 0 | 0% | 0 | 17 | +| `ja` | `jikan` | `enhance_hira2kata` | 1 | 1 | 100% | 1 | 0 | +| `ja` | `jikan` | `enhance_jaconv_norm` | 3 | 3 | 100% | 1 | 0 | +| `ja` | `jikan` | `enhance_kata2hira` | 37 | 6 | 18% | 3 | 4 | +| `ja` | `jikan` | `enhance_zh_simplified` | 7 | 7 | 100% | 3 | 0 | +| `ja` | `jikan` | `enhance_zh_traditional` | 2 | 2 | 100% | 2 | 0 | +| `ja` | `jikan` | `raw` | 100 | 96 | 100% | 90 | 4 | +| `ja` | `kitsu` | `enhance_hira2kata` | 1 | 0 | 0% | 0 | 0 | +| `ja` | `kitsu` | `enhance_jaconv_norm` | 3 | 1 | 33% | 1 | 0 | +| `ja` | `kitsu` | `enhance_kata2hira` | 37 | 3 | 9% | 1 | 3 | +| `ja` | `kitsu` | `enhance_zh_simplified` | 7 | 4 | 57% | 4 | 0 | +| `ja` | `kitsu` | `enhance_zh_traditional` | 2 | 1 | 100% | 1 | 1 | +| `ja` | `kitsu` | `raw` | 100 | 89 | 95% | 83 | 6 | +| `ja` | `shikimori` | `enhance_hira2kata` | 1 | 0 | 0% | 0 | 0 | +| `ja` | `shikimori` | `enhance_jaconv_norm` | 3 | 3 | 100% | 3 | 0 | +| `ja` | `shikimori` | `enhance_kata2hira` | 37 | 1 | 3% | 1 | 3 | +| `ja` | `shikimori` | `enhance_zh_simplified` | 7 | 7 | 100% | 4 | 0 | +| `ja` | `shikimori` | `enhance_zh_traditional` | 2 | 2 | 100% | 1 | 0 | +| `ja` | `shikimori` | `raw` | 100 | 96 | 100% | 83 | 4 | +| `ko` | `anilist` | `raw` | 100 | 8 | 9% | 8 | 8 | +| `ko` | `ann` | `raw` | 100 | 0 | 0% | 0 | 18 | +| `ko` | `jikan` | `raw` | 100 | 19 | 20% | 14 | 5 | +| `ko` | `kitsu` | `raw` | 100 | 8 | 9% | 7 | 9 | +| `ko` | `shikimori` | `raw` | 100 | 14 | 15% | 9 | 6 | +| `zh_cn` | `anilist` | `enhance_lowercase_strip_punct` | 1 | 1 | 100% | 1 | 0 | +| `zh_cn` | `anilist` | `enhance_zh_simplified` | 2 | 1 | 50% | 1 | 0 | +| `zh_cn` | `anilist` | `enhance_zh_traditional` | 70 | 6 | 9% | 6 | 1 | +| `zh_cn` | `anilist` | `raw` | 89 | 44 | 55% | 42 | 9 | +| `zh_cn` | `ann` | `enhance_lowercase_strip_punct` | 1 | 1 | 100% | 0 | 0 | +| `zh_cn` | `ann` | `raw` | 89 | 1 | 1% | 0 | 12 | +| `zh_cn` | `jikan` | `enhance_lowercase_strip_punct` | 1 | 1 | 100% | 1 | 0 | +| `zh_cn` | `jikan` | `enhance_zh_simplified` | 2 | 0 | 0% | 0 | 0 | +| `zh_cn` | `jikan` | `enhance_zh_traditional` | 70 | 32 | 50% | 15 | 6 | +| `zh_cn` | `jikan` | `raw` | 89 | 35 | 43% | 11 | 8 | +| `zh_cn` | `kitsu` | `enhance_lowercase_strip_punct` | 1 | 1 | 100% | 1 | 0 | +| `zh_cn` | `kitsu` | `enhance_zh_simplified` | 2 | 0 | 0% | 0 | 0 | +| `zh_cn` | `kitsu` | `enhance_zh_traditional` | 70 | 9 | 13% | 6 | 3 | +| `zh_cn` | `kitsu` | `raw` | 89 | 10 | 13% | 7 | 10 | +| `zh_cn` | `shikimori` | `enhance_lowercase_strip_punct` | 1 | 1 | 100% | 1 | 0 | +| `zh_cn` | `shikimori` | `enhance_zh_simplified` | 2 | 0 | 0% | 0 | 0 | +| `zh_cn` | `shikimori` | `enhance_zh_traditional` | 70 | 35 | 56% | 19 | 7 | +| `zh_cn` | `shikimori` | `raw` | 89 | 34 | 42% | 14 | 9 | +| `zh_hk_mo` | `anilist` | `enhance_lowercase_strip_punct` | 2 | 2 | 100% | 2 | 0 | +| `zh_hk_mo` | `anilist` | `enhance_zh_simplified` | 41 | 17 | 44% | 15 | 2 | +| `zh_hk_mo` | `anilist` | `enhance_zh_traditional` | 3 | 0 | 0% | 0 | 0 | +| `zh_hk_mo` | `anilist` | `raw` | 54 | 13 | 28% | 11 | 7 | +| `zh_hk_mo` | `ann` | `enhance_lowercase_strip_punct` | 2 | 2 | 100% | 1 | 0 | +| `zh_hk_mo` | `ann` | `raw` | 54 | 2 | 4% | 1 | 6 | +| `zh_hk_mo` | `jikan` | `enhance_lowercase_strip_punct` | 2 | 2 | 100% | 2 | 0 | +| `zh_hk_mo` | `jikan` | `enhance_zh_simplified` | 41 | 19 | 48% | 9 | 1 | +| `zh_hk_mo` | `jikan` | `enhance_zh_traditional` | 3 | 0 | 0% | 0 | 0 | +| `zh_hk_mo` | `jikan` | `raw` | 54 | 28 | 55% | 17 | 3 | +| `zh_hk_mo` | `kitsu` | `enhance_lowercase_strip_punct` | 2 | 2 | 100% | 2 | 0 | +| `zh_hk_mo` | `kitsu` | `enhance_zh_simplified` | 41 | 8 | 21% | 8 | 3 | +| `zh_hk_mo` | `kitsu` | `enhance_zh_traditional` | 3 | 0 | 0% | 0 | 0 | +| `zh_hk_mo` | `kitsu` | `raw` | 54 | 12 | 24% | 11 | 4 | +| `zh_hk_mo` | `shikimori` | `enhance_lowercase_strip_punct` | 2 | 2 | 100% | 1 | 0 | +| `zh_hk_mo` | `shikimori` | `enhance_zh_simplified` | 41 | 19 | 49% | 11 | 2 | +| `zh_hk_mo` | `shikimori` | `enhance_zh_traditional` | 3 | 1 | 33% | 0 | 0 | +| `zh_hk_mo` | `shikimori` | `raw` | 54 | 31 | 57% | 23 | 0 | +| `zh_tw` | `anilist` | `enhance_lowercase_strip_punct` | 2 | 2 | 100% | 2 | 0 | +| `zh_tw` | `anilist` | `enhance_zh_simplified` | 59 | 18 | 35% | 18 | 7 | +| `zh_tw` | `anilist` | `enhance_zh_traditional` | 3 | 0 | 0% | 0 | 1 | +| `zh_tw` | `anilist` | `raw` | 80 | 21 | 28% | 19 | 4 | +| `zh_tw` | `ann` | `enhance_lowercase_strip_punct` | 2 | 2 | 100% | 1 | 0 | +| `zh_tw` | `ann` | `raw` | 80 | 2 | 3% | 1 | 11 | +| `zh_tw` | `jikan` | `enhance_lowercase_strip_punct` | 2 | 2 | 100% | 2 | 0 | +| `zh_tw` | `jikan` | `enhance_zh_simplified` | 59 | 29 | 53% | 9 | 4 | +| `zh_tw` | `jikan` | `enhance_zh_traditional` | 3 | 0 | 0% | 0 | 0 | +| `zh_tw` | `jikan` | `raw` | 80 | 40 | 54% | 22 | 6 | +| `zh_tw` | `kitsu` | `enhance_lowercase_strip_punct` | 2 | 2 | 100% | 2 | 0 | +| `zh_tw` | `kitsu` | `enhance_zh_simplified` | 59 | 12 | 21% | 11 | 3 | +| `zh_tw` | `kitsu` | `enhance_zh_traditional` | 3 | 0 | 0% | 0 | 0 | +| `zh_tw` | `kitsu` | `raw` | 80 | 18 | 23% | 15 | 3 | +| `zh_tw` | `shikimori` | `enhance_lowercase_strip_punct` | 2 | 2 | 100% | 1 | 0 | +| `zh_tw` | `shikimori` | `enhance_zh_simplified` | 59 | 29 | 53% | 15 | 4 | +| `zh_tw` | `shikimori` | `enhance_zh_traditional` | 3 | 1 | 33% | 0 | 0 | +| `zh_tw` | `shikimori` | `raw` | 80 | 40 | 53% | 23 | 4 | diff --git a/tools/search_eval/samples/mal_multilingual_anime100.json b/tools/search_eval/samples/mal_multilingual_anime100.json new file mode 100644 index 0000000..7b7ec96 --- /dev/null +++ b/tools/search_eval/samples/mal_multilingual_anime100.json @@ -0,0 +1,7396 @@ +{ + "schema": "animedex.search_eval.mal_multilingual_anime.v1", + "description": "Top-popularity MAL anime samples with at least one CJK title and at least one Latin/English title, collected via Jikan.", + "selection": { + "source_endpoint": "https://api.jikan.moe/v4/top/anime?filter=bypopularity", + "minimum_count": 100, + "required_cjk_title": "one or more of Japanese kana, Han characters, or Korean Hangul", + "required_latin_title": true, + "complexity_filter": "at least three recorded complexity reasons", + "pages_scanned": 5, + "proxy_used": true + }, + "coverage": { + "japanese_kana": 92, + "han": 63, + "korean_hangul": 0, + "mixed_cjk_latin_title": 19 + }, + "count": 100, + "samples": [ + { + "type": "anime", + "mal_id": 16498, + "url": "https://myanimelist.net/anime/16498/Shingeki_no_Kyojin", + "rank": 127, + "popularity": 1, + "score": 8.57, + "members": 4364615, + "year": 2013, + "default_title": "Shingeki no Kyojin", + "english_title": "Attack on Titan", + "cjk_title": "進撃の巨人", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "進撃の巨人" + ], + "latin_titles": [ + "Shingeki no Kyojin", + "AoT", + "SnK", + "Attack on Titan", + "Attack on Titan", + "Ataque a los Titanes", + "L'Attaque des Titans" + ], + "titles": [ + { + "type": "Default", + "title": "Shingeki no Kyojin" + }, + { + "type": "Synonym", + "title": "AoT" + }, + { + "type": "Synonym", + "title": "SnK" + }, + { + "type": "Japanese", + "title": "進撃の巨人" + }, + { + "type": "English", + "title": "Attack on Titan" + }, + { + "type": "German", + "title": "Attack on Titan" + }, + { + "type": "Spanish", + "title": "Ataque a los Titanes" + }, + { + "type": "French", + "title": "L'Attaque des Titans" + } + ], + "aliases": [ + "Shingeki no Kyojin", + "Attack on Titan", + "進撃の巨人", + "AoT", + "SnK", + "Ataque a los Titanes", + "L'Attaque des Titans" + ], + "ids": { + "mal": 16498, + "jikan": 16498 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 1535, + "url": "https://myanimelist.net/anime/1535/Death_Note", + "rank": 99, + "popularity": 2, + "score": 8.62, + "members": 4302856, + "year": 2006, + "default_title": "Death Note", + "english_title": "Death Note", + "cjk_title": "デスノート", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "デスノート" + ], + "latin_titles": [ + "Death Note", + "DN", + "Death Note" + ], + "titles": [ + { + "type": "Default", + "title": "Death Note" + }, + { + "type": "Synonym", + "title": "DN" + }, + { + "type": "Japanese", + "title": "デスノート" + }, + { + "type": "English", + "title": "Death Note" + } + ], + "aliases": [ + "Death Note", + "デスノート", + "DN" + ], + "ids": { + "mal": 1535, + "jikan": 1535 + }, + "complexity_reasons": [ + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 5114, + "url": "https://myanimelist.net/anime/5114/Fullmetal_Alchemist__Brotherhood", + "rank": 3, + "popularity": 3, + "score": 9.11, + "members": 3685534, + "year": 2009, + "default_title": "Fullmetal Alchemist: Brotherhood", + "english_title": "Fullmetal Alchemist: Brotherhood", + "cjk_title": "鋼の錬金術師 FULLMETAL ALCHEMIST", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "鋼の錬金術師 FULLMETAL ALCHEMIST" + ], + "latin_titles": [ + "Fullmetal Alchemist: Brotherhood", + "Hagane no Renkinjutsushi: Fullmetal Alchemist", + "Fullmetal Alchemist (2009)", + "FMA", + "FMAB", + "Fullmetal Alchemist: Brotherhood", + "Fullmetal Alchemist Brotherhood" + ], + "titles": [ + { + "type": "Default", + "title": "Fullmetal Alchemist: Brotherhood" + }, + { + "type": "Synonym", + "title": "Hagane no Renkinjutsushi: Fullmetal Alchemist" + }, + { + "type": "Synonym", + "title": "Fullmetal Alchemist (2009)" + }, + { + "type": "Synonym", + "title": "FMA" + }, + { + "type": "Synonym", + "title": "FMAB" + }, + { + "type": "Japanese", + "title": "鋼の錬金術師 FULLMETAL ALCHEMIST" + }, + { + "type": "English", + "title": "Fullmetal Alchemist: Brotherhood" + }, + { + "type": "French", + "title": "Fullmetal Alchemist Brotherhood" + } + ], + "aliases": [ + "Fullmetal Alchemist: Brotherhood", + "鋼の錬金術師 FULLMETAL ALCHEMIST", + "Hagane no Renkinjutsushi: Fullmetal Alchemist", + "Fullmetal Alchemist (2009)", + "FMA", + "FMAB", + "Fullmetal Alchemist Brotherhood" + ], + "ids": { + "mal": 5114, + "jikan": 5114 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 30276, + "url": "https://myanimelist.net/anime/30276/One_Punch_Man", + "rank": 181, + "popularity": 4, + "score": 8.47, + "members": 3522453, + "year": 2015, + "default_title": "One Punch Man", + "english_title": "One-Punch Man", + "cjk_title": "ワンパンマン", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ワンパンマン" + ], + "latin_titles": [ + "One Punch Man", + "One Punch-Man", + "OPM", + "One-Punch Man" + ], + "titles": [ + { + "type": "Default", + "title": "One Punch Man" + }, + { + "type": "Synonym", + "title": "One Punch-Man" + }, + { + "type": "Synonym", + "title": "OPM" + }, + { + "type": "Japanese", + "title": "ワンパンマン" + }, + { + "type": "English", + "title": "One-Punch Man" + } + ], + "aliases": [ + "One Punch Man", + "One-Punch Man", + "ワンパンマン", + "One Punch-Man", + "OPM" + ], + "ids": { + "mal": 30276, + "jikan": 30276 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 38000, + "url": "https://myanimelist.net/anime/38000/Kimetsu_no_Yaiba", + "rank": 232, + "popularity": 5, + "score": 8.4, + "members": 3452049, + "year": 2019, + "default_title": "Kimetsu no Yaiba", + "english_title": "Demon Slayer: Kimetsu no Yaiba", + "cjk_title": "鬼滅の刃", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "鬼滅の刃" + ], + "latin_titles": [ + "Kimetsu no Yaiba", + "Blade of Demon Destruction", + "Demon Slayer: Kimetsu no Yaiba", + "Demon Slayer", + "Guardianes De La Noche: Kimetsu no Yaiba", + "Demon Slayer" + ], + "titles": [ + { + "type": "Default", + "title": "Kimetsu no Yaiba" + }, + { + "type": "Synonym", + "title": "Blade of Demon Destruction" + }, + { + "type": "Japanese", + "title": "鬼滅の刃" + }, + { + "type": "English", + "title": "Demon Slayer: Kimetsu no Yaiba" + }, + { + "type": "German", + "title": "Demon Slayer" + }, + { + "type": "Spanish", + "title": "Guardianes De La Noche: Kimetsu no Yaiba" + }, + { + "type": "French", + "title": "Demon Slayer" + } + ], + "aliases": [ + "Kimetsu no Yaiba", + "Demon Slayer: Kimetsu no Yaiba", + "鬼滅の刃", + "Blade of Demon Destruction", + "Demon Slayer", + "Guardianes De La Noche: Kimetsu no Yaiba" + ], + "ids": { + "mal": 38000, + "jikan": 38000 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 31964, + "url": "https://myanimelist.net/anime/31964/Boku_no_Hero_Academia", + "rank": 1105, + "popularity": 6, + "score": 7.83, + "members": 3308507, + "year": 2016, + "default_title": "Boku no Hero Academia", + "english_title": "My Hero Academia", + "cjk_title": "僕のヒーローアカデミア", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "僕のヒーローアカデミア" + ], + "latin_titles": [ + "Boku no Hero Academia", + "My Hero Academia", + "My Hero Academia", + "My Hero Academia", + "My Hero Academia" + ], + "titles": [ + { + "type": "Default", + "title": "Boku no Hero Academia" + }, + { + "type": "Japanese", + "title": "僕のヒーローアカデミア" + }, + { + "type": "English", + "title": "My Hero Academia" + }, + { + "type": "German", + "title": "My Hero Academia" + }, + { + "type": "Spanish", + "title": "My Hero Academia" + }, + { + "type": "French", + "title": "My Hero Academia" + } + ], + "aliases": [ + "Boku no Hero Academia", + "My Hero Academia", + "僕のヒーローアカデミア" + ], + "ids": { + "mal": 31964, + "jikan": 31964 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 11757, + "url": "https://myanimelist.net/anime/11757/Sword_Art_Online", + "rank": 3832, + "popularity": 7, + "score": 7.23, + "members": 3302369, + "year": 2012, + "default_title": "Sword Art Online", + "english_title": "Sword Art Online", + "cjk_title": "ソードアート・オンライン", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ソードアート・オンライン" + ], + "latin_titles": [ + "Sword Art Online", + "S.A.O", + "SAO", + "Sword Art Online" + ], + "titles": [ + { + "type": "Default", + "title": "Sword Art Online" + }, + { + "type": "Synonym", + "title": "S.A.O" + }, + { + "type": "Synonym", + "title": "SAO" + }, + { + "type": "Japanese", + "title": "ソードアート・オンライン" + }, + { + "type": "English", + "title": "Sword Art Online" + } + ], + "aliases": [ + "Sword Art Online", + "ソードアート・オンライン", + "S.A.O", + "SAO" + ], + "ids": { + "mal": 11757, + "jikan": 11757 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 11061, + "url": "https://myanimelist.net/anime/11061/Hunter_x_Hunter_2011", + "rank": 9, + "popularity": 8, + "score": 9.03, + "members": 3191289, + "year": 2011, + "default_title": "Hunter x Hunter (2011)", + "english_title": "Hunter x Hunter", + "cjk_title": "HUNTER×HUNTER(ハンター×ハンター)", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "HUNTER×HUNTER(ハンター×ハンター)" + ], + "latin_titles": [ + "Hunter x Hunter (2011)", + "HxH (2011)", + "Hunter x Hunter", + "Hunter x Hunter", + "Hunter x Hunter", + "Hunter X Hunter" + ], + "titles": [ + { + "type": "Default", + "title": "Hunter x Hunter (2011)" + }, + { + "type": "Synonym", + "title": "HxH (2011)" + }, + { + "type": "Japanese", + "title": "HUNTER×HUNTER(ハンター×ハンター)" + }, + { + "type": "English", + "title": "Hunter x Hunter" + }, + { + "type": "German", + "title": "Hunter x Hunter" + }, + { + "type": "Spanish", + "title": "Hunter x Hunter" + }, + { + "type": "French", + "title": "Hunter X Hunter" + } + ], + "aliases": [ + "Hunter x Hunter (2011)", + "Hunter x Hunter", + "HUNTER×HUNTER(ハンター×ハンター)", + "HxH (2011)", + "Hunter X Hunter" + ], + "ids": { + "mal": 11061, + "jikan": 11061 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 20, + "url": "https://myanimelist.net/anime/20/Naruto", + "rank": 728, + "popularity": 9, + "score": 8.02, + "members": 3120151, + "year": 2002, + "default_title": "Naruto", + "english_title": "Naruto", + "cjk_title": "ナルト", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ナルト" + ], + "latin_titles": [ + "Naruto", + "NARUTO", + "Naruto" + ], + "titles": [ + { + "type": "Default", + "title": "Naruto" + }, + { + "type": "Synonym", + "title": "NARUTO" + }, + { + "type": "Japanese", + "title": "ナルト" + }, + { + "type": "English", + "title": "Naruto" + } + ], + "aliases": [ + "Naruto", + "ナルト", + "NARUTO" + ], + "ids": { + "mal": 20, + "jikan": 20 + }, + "complexity_reasons": [ + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 22319, + "url": "https://myanimelist.net/anime/22319/Tokyo_Ghoul", + "rank": 1230, + "popularity": 10, + "score": 7.79, + "members": 3058751, + "year": 2014, + "default_title": "Tokyo Ghoul", + "english_title": "Tokyo Ghoul", + "cjk_title": "東京喰種-トーキョーグール-", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "東京喰種-トーキョーグール-" + ], + "latin_titles": [ + "Tokyo Ghoul", + "Tokyo Kushu", + "Toukyou Kushu", + "Toukyou Ghoul", + "Tokyo Ghoul" + ], + "titles": [ + { + "type": "Default", + "title": "Tokyo Ghoul" + }, + { + "type": "Synonym", + "title": "Tokyo Kushu" + }, + { + "type": "Synonym", + "title": "Toukyou Kushu" + }, + { + "type": "Synonym", + "title": "Toukyou Ghoul" + }, + { + "type": "Japanese", + "title": "東京喰種-トーキョーグール-" + }, + { + "type": "English", + "title": "Tokyo Ghoul" + } + ], + "aliases": [ + "Tokyo Ghoul", + "東京喰種-トーキョーグール-", + "Tokyo Kushu", + "Toukyou Kushu", + "Toukyou Ghoul" + ], + "ids": { + "mal": 22319, + "jikan": 22319 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 40748, + "url": "https://myanimelist.net/anime/40748/Jujutsu_Kaisen", + "rank": 164, + "popularity": 11, + "score": 8.5, + "members": 3040258, + "year": 2020, + "default_title": "Jujutsu Kaisen", + "english_title": "Jujutsu Kaisen", + "cjk_title": "呪術廻戦", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "呪術廻戦" + ], + "latin_titles": [ + "Jujutsu Kaisen", + "Sorcery Fight", + "JJK", + "Jujutsu Kaisen", + "Jujutsu Kaisen", + "Jujutsu Kaisen", + "Jujutsu Kaisen" + ], + "titles": [ + { + "type": "Default", + "title": "Jujutsu Kaisen" + }, + { + "type": "Synonym", + "title": "Sorcery Fight" + }, + { + "type": "Synonym", + "title": "JJK" + }, + { + "type": "Japanese", + "title": "呪術廻戦" + }, + { + "type": "English", + "title": "Jujutsu Kaisen" + }, + { + "type": "German", + "title": "Jujutsu Kaisen" + }, + { + "type": "Spanish", + "title": "Jujutsu Kaisen" + }, + { + "type": "French", + "title": "Jujutsu Kaisen" + } + ], + "aliases": [ + "Jujutsu Kaisen", + "呪術廻戦", + "Sorcery Fight", + "JJK" + ], + "ids": { + "mal": 40748, + "jikan": 40748 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 32281, + "url": "https://myanimelist.net/anime/32281/Kimi_no_Na_wa", + "rank": 37, + "popularity": 12, + "score": 8.82, + "members": 3029910, + "year": null, + "default_title": "Kimi no Na wa.", + "english_title": "Your Name.", + "cjk_title": "君の名は。", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "君の名は。" + ], + "latin_titles": [ + "Kimi no Na wa.", + "Your Name.", + "Your Name.", + "Your Name.", + "Your Name." + ], + "titles": [ + { + "type": "Default", + "title": "Kimi no Na wa." + }, + { + "type": "Japanese", + "title": "君の名は。" + }, + { + "type": "English", + "title": "Your Name." + }, + { + "type": "German", + "title": "Your Name." + }, + { + "type": "Spanish", + "title": "Your Name." + }, + { + "type": "French", + "title": "Your Name." + } + ], + "aliases": [ + "Kimi no Na wa.", + "Your Name.", + "君の名は。" + ], + "ids": { + "mal": 32281, + "jikan": 32281 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 25777, + "url": "https://myanimelist.net/anime/25777/Shingeki_no_Kyojin_Season_2", + "rank": 146, + "popularity": 13, + "score": 8.54, + "members": 3022645, + "year": 2017, + "default_title": "Shingeki no Kyojin Season 2", + "english_title": "Attack on Titan Season 2", + "cjk_title": "進撃の巨人 Season2", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "進撃の巨人 Season2" + ], + "latin_titles": [ + "Shingeki no Kyojin Season 2", + "Attack on Titan Season 2", + "Attack on Titan – 2. Staffel", + "Ataque a los Titanes Temporada 2", + "L'Attaque des Titans Saison 2" + ], + "titles": [ + { + "type": "Default", + "title": "Shingeki no Kyojin Season 2" + }, + { + "type": "Japanese", + "title": "進撃の巨人 Season2" + }, + { + "type": "English", + "title": "Attack on Titan Season 2" + }, + { + "type": "German", + "title": "Attack on Titan – 2. Staffel" + }, + { + "type": "Spanish", + "title": "Ataque a los Titanes Temporada 2" + }, + { + "type": "French", + "title": "L'Attaque des Titans Saison 2" + } + ], + "aliases": [ + "Shingeki no Kyojin Season 2", + "Attack on Titan Season 2", + "進撃の巨人 Season2", + "Attack on Titan – 2. Staffel", + "Ataque a los Titanes Temporada 2", + "L'Attaque des Titans Saison 2" + ], + "ids": { + "mal": 25777, + "jikan": 25777 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 1735, + "url": "https://myanimelist.net/anime/1735/Naruto__Shippuuden", + "rank": 336, + "popularity": 15, + "score": 8.29, + "members": 2750945, + "year": 2007, + "default_title": "Naruto: Shippuuden", + "english_title": "Naruto Shippuden", + "cjk_title": "-ナルト- 疾風伝", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "-ナルト- 疾風伝" + ], + "latin_titles": [ + "Naruto: Shippuuden", + "Naruto Hurricane Chronicles", + "Naruto Shippuden", + "Naruto Shippuden", + "Naruto Shippuden", + "Naruto Shippuden" + ], + "titles": [ + { + "type": "Default", + "title": "Naruto: Shippuuden" + }, + { + "type": "Synonym", + "title": "Naruto Hurricane Chronicles" + }, + { + "type": "Japanese", + "title": "-ナルト- 疾風伝" + }, + { + "type": "English", + "title": "Naruto Shippuden" + }, + { + "type": "German", + "title": "Naruto Shippuden" + }, + { + "type": "Spanish", + "title": "Naruto Shippuden" + }, + { + "type": "French", + "title": "Naruto Shippuden" + } + ], + "aliases": [ + "Naruto: Shippuuden", + "Naruto Shippuden", + "-ナルト- 疾風伝", + "Naruto Hurricane Chronicles" + ], + "ids": { + "mal": 1735, + "jikan": 1735 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 33486, + "url": "https://myanimelist.net/anime/33486/Boku_no_Hero_Academia_2nd_Season", + "rank": 674, + "popularity": 16, + "score": 8.05, + "members": 2735609, + "year": 2017, + "default_title": "Boku no Hero Academia 2nd Season", + "english_title": "My Hero Academia Season 2", + "cjk_title": "僕のヒーローアカデミア", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "僕のヒーローアカデミア" + ], + "latin_titles": [ + "Boku no Hero Academia 2nd Season", + "My Hero Academia Season 2", + "My Hero Academia – 2. Staffel", + "My Hero Academia Temporada 2", + "My Hero Academia Saison 2" + ], + "titles": [ + { + "type": "Default", + "title": "Boku no Hero Academia 2nd Season" + }, + { + "type": "Japanese", + "title": "僕のヒーローアカデミア" + }, + { + "type": "English", + "title": "My Hero Academia Season 2" + }, + { + "type": "German", + "title": "My Hero Academia – 2. Staffel" + }, + { + "type": "Spanish", + "title": "My Hero Academia Temporada 2" + }, + { + "type": "French", + "title": "My Hero Academia Saison 2" + } + ], + "aliases": [ + "Boku no Hero Academia 2nd Season", + "My Hero Academia Season 2", + "僕のヒーローアカデミア", + "My Hero Academia – 2. Staffel", + "My Hero Academia Temporada 2", + "My Hero Academia Saison 2" + ], + "ids": { + "mal": 33486, + "jikan": 33486 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 35760, + "url": "https://myanimelist.net/anime/35760/Shingeki_no_Kyojin_Season_3", + "rank": 91, + "popularity": 18, + "score": 8.64, + "members": 2668737, + "year": 2018, + "default_title": "Shingeki no Kyojin Season 3", + "english_title": "Attack on Titan Season 3", + "cjk_title": "進撃の巨人 Season3", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "進撃の巨人 Season3" + ], + "latin_titles": [ + "Shingeki no Kyojin Season 3", + "Attack on Titan Season 3", + "Attack on Titan 3. Staffel", + "Ataque a los Titanes Temporada 3", + "L'Attaque des Titans Saison 3" + ], + "titles": [ + { + "type": "Default", + "title": "Shingeki no Kyojin Season 3" + }, + { + "type": "Japanese", + "title": "進撃の巨人 Season3" + }, + { + "type": "English", + "title": "Attack on Titan Season 3" + }, + { + "type": "German", + "title": "Attack on Titan 3. Staffel" + }, + { + "type": "Spanish", + "title": "Ataque a los Titanes Temporada 3" + }, + { + "type": "French", + "title": "L'Attaque des Titans Saison 3" + } + ], + "aliases": [ + "Shingeki no Kyojin Season 3", + "Attack on Titan Season 3", + "進撃の巨人 Season3", + "Attack on Titan 3. Staffel", + "Ataque a los Titanes Temporada 3", + "L'Attaque des Titans Saison 3" + ], + "ids": { + "mal": 35760, + "jikan": 35760 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 28851, + "url": "https://myanimelist.net/anime/28851/Koe_no_Katachi", + "rank": 20, + "popularity": 19, + "score": 8.93, + "members": 2618971, + "year": null, + "default_title": "Koe no Katachi", + "english_title": "A Silent Voice", + "cjk_title": "聲の形", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "聲の形" + ], + "latin_titles": [ + "Koe no Katachi", + "The Shape of Voice", + "A Silent Voice", + "A Silent Voice", + "Una Voz Silenciosa", + "A Silent Voice" + ], + "titles": [ + { + "type": "Default", + "title": "Koe no Katachi" + }, + { + "type": "Synonym", + "title": "The Shape of Voice" + }, + { + "type": "Japanese", + "title": "聲の形" + }, + { + "type": "English", + "title": "A Silent Voice" + }, + { + "type": "German", + "title": "A Silent Voice" + }, + { + "type": "Spanish", + "title": "Una Voz Silenciosa" + }, + { + "type": "French", + "title": "A Silent Voice" + } + ], + "aliases": [ + "Koe no Katachi", + "A Silent Voice", + "聲の形", + "The Shape of Voice", + "Una Voz Silenciosa" + ], + "ids": { + "mal": 28851, + "jikan": 28851 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 38524, + "url": "https://myanimelist.net/anime/38524/Shingeki_no_Kyojin_Season_3_Part_2", + "rank": 8, + "popularity": 20, + "score": 9.05, + "members": 2595457, + "year": 2019, + "default_title": "Shingeki no Kyojin Season 3 Part 2", + "english_title": "Attack on Titan Season 3 Part 2", + "cjk_title": "進撃の巨人 Season3 Part.2", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "進撃の巨人 Season3 Part.2" + ], + "latin_titles": [ + "Shingeki no Kyojin Season 3 Part 2", + "Attack on Titan Season 3 Part 2", + "Attack on Titan Staffel 3 Teil 2", + "Ataque a los Titanes Temporada 3 Parte 2", + "L'Attaque des Titans Saison 3 Partie 2" + ], + "titles": [ + { + "type": "Default", + "title": "Shingeki no Kyojin Season 3 Part 2" + }, + { + "type": "Japanese", + "title": "進撃の巨人 Season3 Part.2" + }, + { + "type": "English", + "title": "Attack on Titan Season 3 Part 2" + }, + { + "type": "German", + "title": "Attack on Titan Staffel 3 Teil 2" + }, + { + "type": "Spanish", + "title": "Ataque a los Titanes Temporada 3 Parte 2" + }, + { + "type": "French", + "title": "L'Attaque des Titans Saison 3 Partie 2" + } + ], + "aliases": [ + "Shingeki no Kyojin Season 3 Part 2", + "Attack on Titan Season 3 Part 2", + "進撃の巨人 Season3 Part.2", + "Attack on Titan Staffel 3 Teil 2", + "Ataque a los Titanes Temporada 3 Parte 2", + "L'Attaque des Titans Saison 3 Partie 2" + ], + "ids": { + "mal": 38524, + "jikan": 38524 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 19815, + "url": "https://myanimelist.net/anime/19815/No_Game_No_Life", + "rank": 718, + "popularity": 21, + "score": 8.03, + "members": 2560158, + "year": 2014, + "default_title": "No Game No Life", + "english_title": "No Game, No Life", + "cjk_title": "ノーゲーム・ノーライフ", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ノーゲーム・ノーライフ" + ], + "latin_titles": [ + "No Game No Life", + "NGNL", + "No Game, No Life", + "No Game, No Life", + "No Game, No Life", + "No Game, No Life" + ], + "titles": [ + { + "type": "Default", + "title": "No Game No Life" + }, + { + "type": "Synonym", + "title": "NGNL" + }, + { + "type": "Japanese", + "title": "ノーゲーム・ノーライフ" + }, + { + "type": "English", + "title": "No Game, No Life" + }, + { + "type": "German", + "title": "No Game, No Life" + }, + { + "type": "Spanish", + "title": "No Game, No Life" + }, + { + "type": "French", + "title": "No Game, No Life" + } + ], + "aliases": [ + "No Game No Life", + "No Game, No Life", + "ノーゲーム・ノーライフ", + "NGNL" + ], + "ids": { + "mal": 19815, + "jikan": 19815 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 1575, + "url": "https://myanimelist.net/anime/1575/Code_Geass__Hangyaku_no_Lelouch", + "rank": 64, + "popularity": 22, + "score": 8.71, + "members": 2474843, + "year": 2006, + "default_title": "Code Geass: Hangyaku no Lelouch", + "english_title": "Code Geass: Lelouch of the Rebellion", + "cjk_title": "コードギアス 反逆のルルーシュ", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "コードギアス 反逆のルルーシュ" + ], + "latin_titles": [ + "Code Geass: Hangyaku no Lelouch", + "Code Geass: Lelouch of the Rebellion", + "Code Geass: Lelouch of the Rebellion", + "Code Geass: Lelouch, el de la Rebelión", + "Code Geass: Lelouch of the Rebellion" + ], + "titles": [ + { + "type": "Default", + "title": "Code Geass: Hangyaku no Lelouch" + }, + { + "type": "Japanese", + "title": "コードギアス 反逆のルルーシュ" + }, + { + "type": "English", + "title": "Code Geass: Lelouch of the Rebellion" + }, + { + "type": "German", + "title": "Code Geass: Lelouch of the Rebellion" + }, + { + "type": "Spanish", + "title": "Code Geass: Lelouch, el de la Rebelión" + }, + { + "type": "French", + "title": "Code Geass: Lelouch of the Rebellion" + } + ], + "aliases": [ + "Code Geass: Hangyaku no Lelouch", + "Code Geass: Lelouch of the Rebellion", + "コードギアス 反逆のルルーシュ", + "Code Geass: Lelouch, el de la Rebelión" + ], + "ids": { + "mal": 1575, + "jikan": 1575 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 31240, + "url": "https://myanimelist.net/anime/31240/Re_Zero_kara_Hajimeru_Isekai_Seikatsu", + "rank": 388, + "popularity": 23, + "score": 8.25, + "members": 2462337, + "year": 2016, + "default_title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "english_title": "Re:ZERO -Starting Life in Another World-", + "cjk_title": "Re:ゼロから始める異世界生活", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "Re:ゼロから始める異世界生活" + ], + "latin_titles": [ + "Re:Zero kara Hajimeru Isekai Seikatsu", + "Re: Life in a different world from zero", + "ReZero", + "Re:ZERO -Starting Life in Another World-", + "Re:ZERO -Starting Life in Another World-", + "Re:Zero -Empezar de cero en un mundo diferente-", + "Re:Zero -Starting Life in Another World-" + ], + "titles": [ + { + "type": "Default", + "title": "Re:Zero kara Hajimeru Isekai Seikatsu" + }, + { + "type": "Synonym", + "title": "Re: Life in a different world from zero" + }, + { + "type": "Synonym", + "title": "ReZero" + }, + { + "type": "Japanese", + "title": "Re:ゼロから始める異世界生活" + }, + { + "type": "English", + "title": "Re:ZERO -Starting Life in Another World-" + }, + { + "type": "German", + "title": "Re:ZERO -Starting Life in Another World-" + }, + { + "type": "Spanish", + "title": "Re:Zero -Empezar de cero en un mundo diferente-" + }, + { + "type": "French", + "title": "Re:Zero -Starting Life in Another World-" + } + ], + "aliases": [ + "Re:Zero kara Hajimeru Isekai Seikatsu", + "Re:ZERO -Starting Life in Another World-", + "Re:ゼロから始める異世界生活", + "Re: Life in a different world from zero", + "ReZero", + "Re:Zero -Empezar de cero en un mundo diferente-", + "Re:Zero -Starting Life in Another World-" + ], + "ids": { + "mal": 31240, + "jikan": 31240 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 23273, + "url": "https://myanimelist.net/anime/23273/Shigatsu_wa_Kimi_no_Uso", + "rank": 90, + "popularity": 24, + "score": 8.64, + "members": 2428451, + "year": 2014, + "default_title": "Shigatsu wa Kimi no Uso", + "english_title": "Your Lie in April", + "cjk_title": "四月は君の嘘", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "四月は君の嘘" + ], + "latin_titles": [ + "Shigatsu wa Kimi no Uso", + "Kimiuso", + "Your Lie in April", + "Shigatsu Wa Kimi No Uso - Sekunden in Moll", + "Your Lie in April", + "Your Lie in April" + ], + "titles": [ + { + "type": "Default", + "title": "Shigatsu wa Kimi no Uso" + }, + { + "type": "Synonym", + "title": "Kimiuso" + }, + { + "type": "Japanese", + "title": "四月は君の嘘" + }, + { + "type": "English", + "title": "Your Lie in April" + }, + { + "type": "German", + "title": "Shigatsu Wa Kimi No Uso - Sekunden in Moll" + }, + { + "type": "Spanish", + "title": "Your Lie in April" + }, + { + "type": "French", + "title": "Your Lie in April" + } + ], + "aliases": [ + "Shigatsu wa Kimi no Uso", + "Your Lie in April", + "四月は君の嘘", + "Kimiuso", + "Shigatsu Wa Kimi No Uso - Sekunden in Moll" + ], + "ids": { + "mal": 23273, + "jikan": 23273 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 36456, + "url": "https://myanimelist.net/anime/36456/Boku_no_Hero_Academia_3rd_Season", + "rank": 787, + "popularity": 25, + "score": 7.98, + "members": 2384829, + "year": 2018, + "default_title": "Boku no Hero Academia 3rd Season", + "english_title": "My Hero Academia Season 3", + "cjk_title": "僕のヒーローアカデミア", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "僕のヒーローアカデミア" + ], + "latin_titles": [ + "Boku no Hero Academia 3rd Season", + "My Hero Academia Season 3", + "My Hero Academia 3. Staffel", + "My Hero Academia Temporada 3", + "My Hero Academia Saison 3" + ], + "titles": [ + { + "type": "Default", + "title": "Boku no Hero Academia 3rd Season" + }, + { + "type": "Japanese", + "title": "僕のヒーローアカデミア" + }, + { + "type": "English", + "title": "My Hero Academia Season 3" + }, + { + "type": "German", + "title": "My Hero Academia 3. Staffel" + }, + { + "type": "Spanish", + "title": "My Hero Academia Temporada 3" + }, + { + "type": "French", + "title": "My Hero Academia Saison 3" + } + ], + "aliases": [ + "Boku no Hero Academia 3rd Season", + "My Hero Academia Season 3", + "僕のヒーローアカデミア", + "My Hero Academia 3. Staffel", + "My Hero Academia Temporada 3", + "My Hero Academia Saison 3" + ], + "ids": { + "mal": 36456, + "jikan": 36456 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z" + }, + { + "type": "anime", + "mal_id": 4224, + "url": "https://myanimelist.net/anime/4224/Toradora", + "rank": 709, + "popularity": 26, + "score": 8.04, + "members": 2368272, + "year": 2008, + "default_title": "Toradora!", + "english_title": "Toradora!", + "cjk_title": "とらドラ!", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "とらドラ!" + ], + "latin_titles": [ + "Toradora!", + "Tiger X Dragon", + "Toradora!" + ], + "titles": [ + { + "type": "Default", + "title": "Toradora!" + }, + { + "type": "Synonym", + "title": "Tiger X Dragon" + }, + { + "type": "Japanese", + "title": "とらドラ!" + }, + { + "type": "English", + "title": "Toradora!" + } + ], + "aliases": [ + "Toradora!", + "とらドラ!", + "Tiger X Dragon" + ], + "ids": { + "mal": 4224, + "jikan": 4224 + }, + "complexity_reasons": [ + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 32182, + "url": "https://myanimelist.net/anime/32182/Mob_Psycho_100", + "rank": 172, + "popularity": 27, + "score": 8.49, + "members": 2322835, + "year": 2016, + "default_title": "Mob Psycho 100", + "english_title": "Mob Psycho 100", + "cjk_title": "モブサイコ100", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "モブサイコ100" + ], + "latin_titles": [ + "Mob Psycho 100", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred", + "Mob Psycho 100" + ], + "titles": [ + { + "type": "Default", + "title": "Mob Psycho 100" + }, + { + "type": "Synonym", + "title": "Mob Psycho Hyaku" + }, + { + "type": "Synonym", + "title": "Mob Psycho One Hundred" + }, + { + "type": "Japanese", + "title": "モブサイコ100" + }, + { + "type": "English", + "title": "Mob Psycho 100" + } + ], + "aliases": [ + "Mob Psycho 100", + "モブサイコ100", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "ids": { + "mal": 32182, + "jikan": 32182 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "season/part/number marker", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 20507, + "url": "https://myanimelist.net/anime/20507/Noragami", + "rank": 858, + "popularity": 28, + "score": 7.94, + "members": 2317912, + "year": 2014, + "default_title": "Noragami", + "english_title": "Noragami", + "cjk_title": "ノラガミ", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ノラガミ" + ], + "latin_titles": [ + "Noragami", + "Noragami" + ], + "titles": [ + { + "type": "Default", + "title": "Noragami" + }, + { + "type": "Japanese", + "title": "ノラガミ" + }, + { + "type": "English", + "title": "Noragami" + } + ], + "aliases": [ + "Noragami", + "ノラガミ" + ], + "ids": { + "mal": 20507, + "jikan": 20507 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 31043, + "url": "https://myanimelist.net/anime/31043/Boku_dake_ga_Inai_Machi", + "rank": 313, + "popularity": 29, + "score": 8.31, + "members": 2295776, + "year": 2016, + "default_title": "Boku dake ga Inai Machi", + "english_title": "Erased", + "cjk_title": "僕だけがいない街", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "僕だけがいない街" + ], + "latin_titles": [ + "Boku dake ga Inai Machi", + "The Town Where Only I am Missing", + "BokuMachi", + "Erased", + "ERASED - Die Stadt, in der es mich nicht gibt -", + "Desaparecido", + "ERASED" + ], + "titles": [ + { + "type": "Default", + "title": "Boku dake ga Inai Machi" + }, + { + "type": "Synonym", + "title": "The Town Where Only I am Missing" + }, + { + "type": "Synonym", + "title": "BokuMachi" + }, + { + "type": "Japanese", + "title": "僕だけがいない街" + }, + { + "type": "English", + "title": "Erased" + }, + { + "type": "German", + "title": "ERASED - Die Stadt, in der es mich nicht gibt -" + }, + { + "type": "Spanish", + "title": "Desaparecido" + }, + { + "type": "French", + "title": "ERASED" + } + ], + "aliases": [ + "Boku dake ga Inai Machi", + "Erased", + "僕だけがいない街", + "The Town Where Only I am Missing", + "BokuMachi", + "ERASED - Die Stadt, in der es mich nicht gibt -", + "Desaparecido", + "ERASED" + ], + "ids": { + "mal": 31043, + "jikan": 31043 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 40028, + "url": "https://myanimelist.net/anime/40028/Shingeki_no_Kyojin__The_Final_Season", + "rank": 39, + "popularity": 30, + "score": 8.79, + "members": 2292494, + "year": 2021, + "default_title": "Shingeki no Kyojin: The Final Season", + "english_title": "Attack on Titan: Final Season", + "cjk_title": "進撃の巨人 The Final Season", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "進撃の巨人 The Final Season" + ], + "latin_titles": [ + "Shingeki no Kyojin: The Final Season", + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4", + "Attack on Titan: Final Season", + "Attack on Titan Final Season", + "Ataque a los Titanes Temporada Final", + "L'Attaque des Titans Saison Finale" + ], + "titles": [ + { + "type": "Default", + "title": "Shingeki no Kyojin: The Final Season" + }, + { + "type": "Synonym", + "title": "Shingeki no Kyojin Season 4" + }, + { + "type": "Synonym", + "title": "Attack on Titan Season 4" + }, + { + "type": "Japanese", + "title": "進撃の巨人 The Final Season" + }, + { + "type": "English", + "title": "Attack on Titan: Final Season" + }, + { + "type": "German", + "title": "Attack on Titan Final Season" + }, + { + "type": "Spanish", + "title": "Ataque a los Titanes Temporada Final" + }, + { + "type": "French", + "title": "L'Attaque des Titans Saison Finale" + } + ], + "aliases": [ + "Shingeki no Kyojin: The Final Season", + "Attack on Titan: Final Season", + "進撃の巨人 The Final Season", + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4", + "Attack on Titan Final Season", + "Ataque a los Titanes Temporada Final", + "L'Attaque des Titans Saison Finale" + ], + "ids": { + "mal": 40028, + "jikan": 40028 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 22199, + "url": "https://myanimelist.net/anime/22199/Akame_ga_Kill", + "rank": 2339, + "popularity": 31, + "score": 7.48, + "members": 2272044, + "year": 2014, + "default_title": "Akame ga Kill!", + "english_title": "Akame ga Kill!", + "cjk_title": "アカメが斬る!", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "アカメが斬る!" + ], + "latin_titles": [ + "Akame ga Kill!", + "Akame ga Kiru!", + "Akame ga Kill!", + "Red Eyes Sword - Akame ga Kill!" + ], + "titles": [ + { + "type": "Default", + "title": "Akame ga Kill!" + }, + { + "type": "Synonym", + "title": "Akame ga Kiru!" + }, + { + "type": "Japanese", + "title": "アカメが斬る!" + }, + { + "type": "English", + "title": "Akame ga Kill!" + }, + { + "type": "French", + "title": "Red Eyes Sword - Akame ga Kill!" + } + ], + "aliases": [ + "Akame ga Kill!", + "アカメが斬る!", + "Akame ga Kiru!", + "Red Eyes Sword - Akame ga Kill!" + ], + "ids": { + "mal": 22199, + "jikan": 22199 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 24833, + "url": "https://myanimelist.net/anime/24833/Ansatsu_Kyoushitsu", + "rank": 643, + "popularity": 32, + "score": 8.07, + "members": 2217378, + "year": 2015, + "default_title": "Ansatsu Kyoushitsu", + "english_title": "Assassination Classroom", + "cjk_title": "暗殺教室", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "暗殺教室" + ], + "latin_titles": [ + "Ansatsu Kyoushitsu", + "Assassination Classroom", + "Assassination Classroom", + "Assassination Classroom", + "Assassination Classroom" + ], + "titles": [ + { + "type": "Default", + "title": "Ansatsu Kyoushitsu" + }, + { + "type": "Japanese", + "title": "暗殺教室" + }, + { + "type": "English", + "title": "Assassination Classroom" + }, + { + "type": "German", + "title": "Assassination Classroom" + }, + { + "type": "Spanish", + "title": "Assassination Classroom" + }, + { + "type": "French", + "title": "Assassination Classroom" + } + ], + "aliases": [ + "Ansatsu Kyoushitsu", + "Assassination Classroom", + "暗殺教室" + ], + "ids": { + "mal": 24833, + "jikan": 24833 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 23755, + "url": "https://myanimelist.net/anime/23755/Nanatsu_no_Taizai", + "rank": 1830, + "popularity": 33, + "score": 7.6, + "members": 2212586, + "year": 2014, + "default_title": "Nanatsu no Taizai", + "english_title": "The Seven Deadly Sins", + "cjk_title": "七つの大罪", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "七つの大罪" + ], + "latin_titles": [ + "Nanatsu no Taizai", + "The Seven Deadly Sins", + "The Seven Deadly Sins", + "The Seven Deadly Sins" + ], + "titles": [ + { + "type": "Default", + "title": "Nanatsu no Taizai" + }, + { + "type": "Japanese", + "title": "七つの大罪" + }, + { + "type": "English", + "title": "The Seven Deadly Sins" + }, + { + "type": "German", + "title": "The Seven Deadly Sins" + }, + { + "type": "French", + "title": "The Seven Deadly Sins" + } + ], + "aliases": [ + "Nanatsu no Taizai", + "The Seven Deadly Sins", + "七つの大罪" + ], + "ids": { + "mal": 23755, + "jikan": 23755 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 269, + "url": "https://myanimelist.net/anime/269/Bleach", + "rank": 766, + "popularity": 34, + "score": 7.99, + "members": 2210377, + "year": 2004, + "default_title": "Bleach", + "english_title": "Bleach", + "cjk_title": "BLEACH - ブリーチ -", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "BLEACH - ブリーチ -" + ], + "latin_titles": [ + "Bleach", + "Bleach" + ], + "titles": [ + { + "type": "Default", + "title": "Bleach" + }, + { + "type": "Japanese", + "title": "BLEACH - ブリーチ -" + }, + { + "type": "English", + "title": "Bleach" + } + ], + "aliases": [ + "Bleach", + "BLEACH - ブリーチ -" + ], + "ids": { + "mal": 269, + "jikan": 269 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 6547, + "url": "https://myanimelist.net/anime/6547/Angel_Beats", + "rank": 672, + "popularity": 35, + "score": 8.05, + "members": 2202945, + "year": 2010, + "default_title": "Angel Beats!", + "english_title": "Angel Beats!", + "cjk_title": "Angel Beats!(エンジェルビーツ!)", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "Angel Beats!(エンジェルビーツ!)" + ], + "latin_titles": [ + "Angel Beats!", + "Angel Beats!" + ], + "titles": [ + { + "type": "Default", + "title": "Angel Beats!" + }, + { + "type": "Japanese", + "title": "Angel Beats!(エンジェルビーツ!)" + }, + { + "type": "English", + "title": "Angel Beats!" + } + ], + "aliases": [ + "Angel Beats!", + "Angel Beats!(エンジェルビーツ!)" + ], + "ids": { + "mal": 6547, + "jikan": 6547 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 20583, + "url": "https://myanimelist.net/anime/20583/Haikyuu", + "rank": 201, + "popularity": 36, + "score": 8.43, + "members": 2175778, + "year": 2014, + "default_title": "Haikyuu!!", + "english_title": "Haikyu!!", + "cjk_title": "ハイキュー!!", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ハイキュー!!" + ], + "latin_titles": [ + "Haikyuu!!", + "High Kyuu!!", + "HQ!!", + "Haikyu!!", + "Haikyu!!", + "Haikyu!! Los Ases del Vóley", + "Haikyu!!" + ], + "titles": [ + { + "type": "Default", + "title": "Haikyuu!!" + }, + { + "type": "Synonym", + "title": "High Kyuu!!" + }, + { + "type": "Synonym", + "title": "HQ!!" + }, + { + "type": "Japanese", + "title": "ハイキュー!!" + }, + { + "type": "English", + "title": "Haikyu!!" + }, + { + "type": "German", + "title": "Haikyu!!" + }, + { + "type": "Spanish", + "title": "Haikyu!! Los Ases del Vóley" + }, + { + "type": "French", + "title": "Haikyu!!" + } + ], + "aliases": [ + "Haikyuu!!", + "Haikyu!!", + "ハイキュー!!", + "High Kyuu!!", + "HQ!!", + "Haikyu!! Los Ases del Vóley" + ], + "ids": { + "mal": 20583, + "jikan": 20583 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 37779, + "url": "https://myanimelist.net/anime/37779/Yakusoku_no_Neverland", + "rank": 183, + "popularity": 37, + "score": 8.47, + "members": 2156756, + "year": 2019, + "default_title": "Yakusoku no Neverland", + "english_title": "The Promised Neverland", + "cjk_title": "約束のネバーランド", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "約束のネバーランド" + ], + "latin_titles": [ + "Yakusoku no Neverland", + "The Promised Neverland", + "The Promised Neverland", + "The Promised Neverland", + "The Promised Neverland" + ], + "titles": [ + { + "type": "Default", + "title": "Yakusoku no Neverland" + }, + { + "type": "Japanese", + "title": "約束のネバーランド" + }, + { + "type": "English", + "title": "The Promised Neverland" + }, + { + "type": "German", + "title": "The Promised Neverland" + }, + { + "type": "Spanish", + "title": "The Promised Neverland" + }, + { + "type": "French", + "title": "The Promised Neverland" + } + ], + "aliases": [ + "Yakusoku no Neverland", + "The Promised Neverland", + "約束のネバーランド" + ], + "ids": { + "mal": 37779, + "jikan": 37779 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 30831, + "url": "https://myanimelist.net/anime/30831/Kono_Subarashii_Sekai_ni_Shukufuku_wo", + "rank": 619, + "popularity": 38, + "score": 8.09, + "members": 2153919, + "year": 2016, + "default_title": "Kono Subarashii Sekai ni Shukufuku wo!", + "english_title": "KonoSuba: God's Blessing on This Wonderful World!", + "cjk_title": "この素晴らしい世界に祝福を!", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "この素晴らしい世界に祝福を!" + ], + "latin_titles": [ + "Kono Subarashii Sekai ni Shukufuku wo!", + "Give Blessings to This Wonderful World!", + "KonoSuba: God's Blessing on This Wonderful World!", + "KonoSuba: God's Blessing on This Wonderful World!", + "KonoSuba: God's blessing on this wonderful world!", + "KonoSuba: God's Blessing on This Wonderful World!" + ], + "titles": [ + { + "type": "Default", + "title": "Kono Subarashii Sekai ni Shukufuku wo!" + }, + { + "type": "Synonym", + "title": "Give Blessings to This Wonderful World!" + }, + { + "type": "Japanese", + "title": "この素晴らしい世界に祝福を!" + }, + { + "type": "English", + "title": "KonoSuba: God's Blessing on This Wonderful World!" + }, + { + "type": "German", + "title": "KonoSuba: God's Blessing on This Wonderful World!" + }, + { + "type": "Spanish", + "title": "KonoSuba: God's blessing on this wonderful world!" + }, + { + "type": "French", + "title": "KonoSuba: God's Blessing on This Wonderful World!" + } + ], + "aliases": [ + "Kono Subarashii Sekai ni Shukufuku wo!", + "KonoSuba: God's Blessing on This Wonderful World!", + "この素晴らしい世界に祝福を!", + "Give Blessings to This Wonderful World!", + "KonoSuba: God's blessing on this wonderful world!" + ], + "ids": { + "mal": 30831, + "jikan": 30831 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 10620, + "url": "https://myanimelist.net/anime/10620/Mirai_Nikki_TV", + "rank": 2866, + "popularity": 39, + "score": 7.38, + "members": 2138601, + "year": 2011, + "default_title": "Mirai Nikki (TV)", + "english_title": "The Future Diary", + "cjk_title": "未来日記", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "未来日記" + ], + "latin_titles": [ + "Mirai Nikki (TV)", + "Mirai Nikki", + "Mirai Nikki (2011)", + "The Future Diary", + "The Future Diary" + ], + "titles": [ + { + "type": "Default", + "title": "Mirai Nikki (TV)" + }, + { + "type": "Synonym", + "title": "Mirai Nikki" + }, + { + "type": "Synonym", + "title": "Mirai Nikki (2011)" + }, + { + "type": "Japanese", + "title": "未来日記" + }, + { + "type": "English", + "title": "The Future Diary" + }, + { + "type": "Spanish", + "title": "The Future Diary" + } + ], + "aliases": [ + "Mirai Nikki (TV)", + "The Future Diary", + "未来日記", + "Mirai Nikki", + "Mirai Nikki (2011)" + ], + "ids": { + "mal": 10620, + "jikan": 10620 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 21881, + "url": "https://myanimelist.net/anime/21881/Sword_Art_Online_II", + "rank": 6875, + "popularity": 40, + "score": 6.72, + "members": 2114296, + "year": 2014, + "default_title": "Sword Art Online II", + "english_title": "Sword Art Online II", + "cjk_title": "ソードアート・オンライン II", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ソードアート・オンライン II" + ], + "latin_titles": [ + "Sword Art Online II", + "Phantom Bullet", + "SAO II", + "Sword Art Online 2", + "SAO 2", + "Sword Art Online II", + "Sword Art Online Ⅱ" + ], + "titles": [ + { + "type": "Default", + "title": "Sword Art Online II" + }, + { + "type": "Synonym", + "title": "Phantom Bullet" + }, + { + "type": "Synonym", + "title": "SAO II" + }, + { + "type": "Synonym", + "title": "Sword Art Online 2" + }, + { + "type": "Synonym", + "title": "SAO 2" + }, + { + "type": "Japanese", + "title": "ソードアート・オンライン II" + }, + { + "type": "English", + "title": "Sword Art Online II" + }, + { + "type": "French", + "title": "Sword Art Online Ⅱ" + } + ], + "aliases": [ + "Sword Art Online II", + "ソードアート・オンライン II", + "Phantom Bullet", + "SAO II", + "Sword Art Online 2", + "SAO 2", + "Sword Art Online Ⅱ" + ], + "ids": { + "mal": 21881, + "jikan": 21881 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "season/part/number marker", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 1, + "url": "https://myanimelist.net/anime/1/Cowboy_Bebop", + "rank": 49, + "popularity": 41, + "score": 8.75, + "members": 2058681, + "year": 1998, + "default_title": "Cowboy Bebop", + "english_title": "Cowboy Bebop", + "cjk_title": "カウボーイビバップ", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "カウボーイビバップ" + ], + "latin_titles": [ + "Cowboy Bebop", + "Cowboy Bebop" + ], + "titles": [ + { + "type": "Default", + "title": "Cowboy Bebop" + }, + { + "type": "Japanese", + "title": "カウボーイビバップ" + }, + { + "type": "English", + "title": "Cowboy Bebop" + } + ], + "aliases": [ + "Cowboy Bebop", + "カウボーイビバップ" + ], + "ids": { + "mal": 1, + "jikan": 1 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 9919, + "url": "https://myanimelist.net/anime/9919/Ao_no_Exorcist", + "rank": 2387, + "popularity": 42, + "score": 7.47, + "members": 2055268, + "year": 2011, + "default_title": "Ao no Exorcist", + "english_title": "Blue Exorcist", + "cjk_title": "青の祓魔師", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "青の祓魔師" + ], + "latin_titles": [ + "Ao no Exorcist", + "Ao no Futsumashi", + "Blue Exorcist", + "Blue Exorcist", + "Blue Exorcist", + "Blue Exorcist" + ], + "titles": [ + { + "type": "Default", + "title": "Ao no Exorcist" + }, + { + "type": "Synonym", + "title": "Ao no Futsumashi" + }, + { + "type": "Japanese", + "title": "青の祓魔師" + }, + { + "type": "English", + "title": "Blue Exorcist" + }, + { + "type": "German", + "title": "Blue Exorcist" + }, + { + "type": "Spanish", + "title": "Blue Exorcist" + }, + { + "type": "French", + "title": "Blue Exorcist" + } + ], + "aliases": [ + "Ao no Exorcist", + "Blue Exorcist", + "青の祓魔師", + "Ao no Futsumashi" + ], + "ids": { + "mal": 9919, + "jikan": 9919 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 22535, + "url": "https://myanimelist.net/anime/22535/Kiseijuu__Sei_no_Kakuritsu", + "rank": 308, + "popularity": 43, + "score": 8.32, + "members": 2042369, + "year": 2014, + "default_title": "Kiseijuu: Sei no Kakuritsu", + "english_title": "Parasyte: The Maxim", + "cjk_title": "寄生獣 セイの格率", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "寄生獣 セイの格率" + ], + "latin_titles": [ + "Kiseijuu: Sei no Kakuritsu", + "Parasite", + "Parasitic Beasts", + "Parasyte", + "Parasyte: The Maxim", + "Parasyte -the maxim-", + "Parasyte -the maxim-", + "Parasite -la maxime-" + ], + "titles": [ + { + "type": "Default", + "title": "Kiseijuu: Sei no Kakuritsu" + }, + { + "type": "Synonym", + "title": "Parasite" + }, + { + "type": "Synonym", + "title": "Parasitic Beasts" + }, + { + "type": "Synonym", + "title": "Parasyte" + }, + { + "type": "Japanese", + "title": "寄生獣 セイの格率" + }, + { + "type": "English", + "title": "Parasyte: The Maxim" + }, + { + "type": "German", + "title": "Parasyte -the maxim-" + }, + { + "type": "Spanish", + "title": "Parasyte -the maxim-" + }, + { + "type": "French", + "title": "Parasite -la maxime-" + } + ], + "aliases": [ + "Kiseijuu: Sei no Kakuritsu", + "Parasyte: The Maxim", + "寄生獣 セイの格率", + "Parasite", + "Parasitic Beasts", + "Parasyte", + "Parasyte -the maxim-", + "Parasite -la maxime-" + ], + "ids": { + "mal": 22535, + "jikan": 22535 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 30, + "url": "https://myanimelist.net/anime/30/Shinseiki_Evangelion", + "rank": 261, + "popularity": 44, + "score": 8.37, + "members": 2031267, + "year": 1995, + "default_title": "Shinseiki Evangelion", + "english_title": "Neon Genesis Evangelion", + "cjk_title": "新世紀エヴァンゲリオン", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "新世紀エヴァンゲリオン" + ], + "latin_titles": [ + "Shinseiki Evangelion", + "NGE", + "Evangelion (1995)", + "Neon Genesis Evangelion" + ], + "titles": [ + { + "type": "Default", + "title": "Shinseiki Evangelion" + }, + { + "type": "Synonym", + "title": "NGE" + }, + { + "type": "Synonym", + "title": "Evangelion (1995)" + }, + { + "type": "Japanese", + "title": "新世紀エヴァンゲリオン" + }, + { + "type": "English", + "title": "Neon Genesis Evangelion" + } + ], + "aliases": [ + "Shinseiki Evangelion", + "Neon Genesis Evangelion", + "新世紀エヴァンゲリオン", + "NGE", + "Evangelion (1995)" + ], + "ids": { + "mal": 30, + "jikan": 30 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 199, + "url": "https://myanimelist.net/anime/199/Sen_to_Chihiro_no_Kamikakushi", + "rank": 45, + "popularity": 45, + "score": 8.77, + "members": 2030544, + "year": null, + "default_title": "Sen to Chihiro no Kamikakushi", + "english_title": "Spirited Away", + "cjk_title": "千と千尋の神隠し", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "千と千尋の神隠し" + ], + "latin_titles": [ + "Sen to Chihiro no Kamikakushi", + "Sen and Chihiro's Spiriting Away", + "Spirited Away", + "Chihiros Reise ins Zauberland", + "El viaje de Chihiro", + "Le Voyage de Chihiro" + ], + "titles": [ + { + "type": "Default", + "title": "Sen to Chihiro no Kamikakushi" + }, + { + "type": "Synonym", + "title": "Sen and Chihiro's Spiriting Away" + }, + { + "type": "Japanese", + "title": "千と千尋の神隠し" + }, + { + "type": "English", + "title": "Spirited Away" + }, + { + "type": "German", + "title": "Chihiros Reise ins Zauberland" + }, + { + "type": "Spanish", + "title": "El viaje de Chihiro" + }, + { + "type": "French", + "title": "Le Voyage de Chihiro" + } + ], + "aliases": [ + "Sen to Chihiro no Kamikakushi", + "Spirited Away", + "千と千尋の神隠し", + "Sen and Chihiro's Spiriting Away", + "Chihiros Reise ins Zauberland", + "El viaje de Chihiro", + "Le Voyage de Chihiro" + ], + "ids": { + "mal": 199, + "jikan": 199 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 33352, + "url": "https://myanimelist.net/anime/33352/Violet_Evergarden", + "rank": 75, + "popularity": 46, + "score": 8.69, + "members": 1999853, + "year": 2018, + "default_title": "Violet Evergarden", + "english_title": "Violet Evergarden", + "cjk_title": "ヴァイオレット・エヴァーガーデン", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ヴァイオレット・エヴァーガーデン" + ], + "latin_titles": [ + "Violet Evergarden", + "Violet Evergarden" + ], + "titles": [ + { + "type": "Default", + "title": "Violet Evergarden" + }, + { + "type": "Japanese", + "title": "ヴァイオレット・エヴァーガーデン" + }, + { + "type": "English", + "title": "Violet Evergarden" + } + ], + "aliases": [ + "Violet Evergarden", + "ヴァイオレット・エヴァーガーデン" + ], + "ids": { + "mal": 33352, + "jikan": 33352 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 44511, + "url": "https://myanimelist.net/anime/44511/Chainsaw_Man", + "rank": 200, + "popularity": 47, + "score": 8.43, + "members": 1969245, + "year": 2022, + "default_title": "Chainsaw Man", + "english_title": "Chainsaw Man", + "cjk_title": "チェンソーマン", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "チェンソーマン" + ], + "latin_titles": [ + "Chainsaw Man", + "CSM", + "Chainsaw Man" + ], + "titles": [ + { + "type": "Default", + "title": "Chainsaw Man" + }, + { + "type": "Synonym", + "title": "CSM" + }, + { + "type": "Japanese", + "title": "チェンソーマン" + }, + { + "type": "English", + "title": "Chainsaw Man" + } + ], + "aliases": [ + "Chainsaw Man", + "チェンソーマン", + "CSM" + ], + "ids": { + "mal": 44511, + "jikan": 44511 + }, + "complexity_reasons": [ + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 37450, + "url": "https://myanimelist.net/anime/37450/Seishun_Buta_Yarou_wa_Bunny_Girl_Senpai_no_Yume_wo_Minai", + "rank": 415, + "popularity": 48, + "score": 8.23, + "members": 1962936, + "year": 2018, + "default_title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "english_title": "Rascal Does Not Dream of Bunny Girl Senpai", + "cjk_title": "青春ブタ野郎はバニーガール先輩の夢を見ない", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "青春ブタ野郎はバニーガール先輩の夢を見ない" + ], + "latin_titles": [ + "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "AoButa", + "Rascal Does Not Dream of Bunny Girl Senpai", + "Rascal Dpes Not Dream Of Bunny Girl Senpai", + "Rascal does not Dream of Bunny Girl Senpai (Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai)", + "Rascal does not Dream of Bunny Girl Senpai (Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai)" + ], + "titles": [ + { + "type": "Default", + "title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai" + }, + { + "type": "Synonym", + "title": "AoButa" + }, + { + "type": "Japanese", + "title": "青春ブタ野郎はバニーガール先輩の夢を見ない" + }, + { + "type": "English", + "title": "Rascal Does Not Dream of Bunny Girl Senpai" + }, + { + "type": "German", + "title": "Rascal Dpes Not Dream Of Bunny Girl Senpai" + }, + { + "type": "Spanish", + "title": "Rascal does not Dream of Bunny Girl Senpai (Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai)" + }, + { + "type": "French", + "title": "Rascal does not Dream of Bunny Girl Senpai (Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai)" + } + ], + "aliases": [ + "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "Rascal Does Not Dream of Bunny Girl Senpai", + "青春ブタ野郎はバニーガール先輩の夢を見ない", + "AoButa", + "Rascal Dpes Not Dream Of Bunny Girl Senpai", + "Rascal does not Dream of Bunny Girl Senpai (Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai)" + ], + "ids": { + "mal": 37450, + "jikan": 37450 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 38691, + "url": "https://myanimelist.net/anime/38691/Dr_Stone", + "rank": 367, + "popularity": 49, + "score": 8.26, + "members": 1959692, + "year": 2019, + "default_title": "Dr. Stone", + "english_title": "Dr. Stone", + "cjk_title": "ドクターストーン", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ドクターストーン" + ], + "latin_titles": [ + "Dr. Stone", + "Dr. Stone" + ], + "titles": [ + { + "type": "Default", + "title": "Dr. Stone" + }, + { + "type": "Japanese", + "title": "ドクターストーン" + }, + { + "type": "English", + "title": "Dr. Stone" + } + ], + "aliases": [ + "Dr. Stone", + "ドクターストーン" + ], + "ids": { + "mal": 38691, + "jikan": 38691 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 2904, + "url": "https://myanimelist.net/anime/2904/Code_Geass__Hangyaku_no_Lelouch_R2", + "rank": 21, + "popularity": 50, + "score": 8.92, + "members": 1957533, + "year": 2008, + "default_title": "Code Geass: Hangyaku no Lelouch R2", + "english_title": "Code Geass: Lelouch of the Rebellion R2", + "cjk_title": "コードギアス 反逆のルルーシュ R2", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "コードギアス 反逆のルルーシュ R2" + ], + "latin_titles": [ + "Code Geass: Hangyaku no Lelouch R2", + "Code Geass: Hangyaku no Lelouch 2nd Season", + "Code Geass: Hangyaku no Lelouch Second Season", + "Code Geass: Lelouch of the Rebellion R2", + "Code Geass: Lelouch of the Rebellion R2", + "Code Geass: Lelouch, el de la Rebelión R2", + "Code Geass: Lelouch of the Rebellion R2" + ], + "titles": [ + { + "type": "Default", + "title": "Code Geass: Hangyaku no Lelouch R2" + }, + { + "type": "Synonym", + "title": "Code Geass: Hangyaku no Lelouch 2nd Season" + }, + { + "type": "Synonym", + "title": "Code Geass: Hangyaku no Lelouch Second Season" + }, + { + "type": "Japanese", + "title": "コードギアス 反逆のルルーシュ R2" + }, + { + "type": "English", + "title": "Code Geass: Lelouch of the Rebellion R2" + }, + { + "type": "German", + "title": "Code Geass: Lelouch of the Rebellion R2" + }, + { + "type": "Spanish", + "title": "Code Geass: Lelouch, el de la Rebelión R2" + }, + { + "type": "French", + "title": "Code Geass: Lelouch of the Rebellion R2" + } + ], + "aliases": [ + "Code Geass: Hangyaku no Lelouch R2", + "Code Geass: Lelouch of the Rebellion R2", + "コードギアス 反逆のルルーシュ R2", + "Code Geass: Hangyaku no Lelouch 2nd Season", + "Code Geass: Hangyaku no Lelouch Second Season", + "Code Geass: Lelouch, el de la Rebelión R2" + ], + "ids": { + "mal": 2904, + "jikan": 2904 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z" + }, + { + "type": "anime", + "mal_id": 37999, + "url": "https://myanimelist.net/anime/37999/Kaguya-sama_wa_Kokurasetai__Tensai-tachi_no_Renai_Zunousen", + "rank": 231, + "popularity": 51, + "score": 8.4, + "members": 1942923, + "year": 2019, + "default_title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "english_title": "Kaguya-sama: Love is War", + "cjk_title": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "かぐや様は告らせたい~天才たちの恋愛頭脳戦~" + ], + "latin_titles": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", + "Kaguya-sama: Love is War", + "Kauya-sama: Love Is War", + "Kaguya-sama: Love is War", + "Kaguya-sama: Love is War" + ], + "titles": [ + { + "type": "Default", + "title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen" + }, + { + "type": "Synonym", + "title": "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains" + }, + { + "type": "Japanese", + "title": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~" + }, + { + "type": "English", + "title": "Kaguya-sama: Love is War" + }, + { + "type": "German", + "title": "Kauya-sama: Love Is War" + }, + { + "type": "Spanish", + "title": "Kaguya-sama: Love is War" + }, + { + "type": "French", + "title": "Kaguya-sama: Love is War" + } + ], + "aliases": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "Kaguya-sama: Love is War", + "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", + "Kauya-sama: Love Is War" + ], + "ids": { + "mal": 37999, + "jikan": 37999 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 28223, + "url": "https://myanimelist.net/anime/28223/Death_Parade", + "rank": 548, + "popularity": 52, + "score": 8.13, + "members": 1920151, + "year": 2015, + "default_title": "Death Parade", + "english_title": "Death Parade", + "cjk_title": "デス・パレード", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "デス・パレード" + ], + "latin_titles": [ + "Death Parade", + "Death Parade" + ], + "titles": [ + { + "type": "Default", + "title": "Death Parade" + }, + { + "type": "Japanese", + "title": "デス・パレード" + }, + { + "type": "English", + "title": "Death Parade" + } + ], + "aliases": [ + "Death Parade", + "デス・パレード" + ], + "ids": { + "mal": 28223, + "jikan": 28223 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 38408, + "url": "https://myanimelist.net/anime/38408/Boku_no_Hero_Academia_4th_Season", + "rank": 1036, + "popularity": 53, + "score": 7.86, + "members": 1910660, + "year": 2019, + "default_title": "Boku no Hero Academia 4th Season", + "english_title": "My Hero Academia Season 4", + "cjk_title": "僕のヒーローアカデミア", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "僕のヒーローアカデミア" + ], + "latin_titles": [ + "Boku no Hero Academia 4th Season", + "My Hero Academia Season 4", + "My Hero Academia Staffel 4", + "My Hero Academia Temporada 4", + "My Hero Academia Saison 4" + ], + "titles": [ + { + "type": "Default", + "title": "Boku no Hero Academia 4th Season" + }, + { + "type": "Japanese", + "title": "僕のヒーローアカデミア" + }, + { + "type": "English", + "title": "My Hero Academia Season 4" + }, + { + "type": "German", + "title": "My Hero Academia Staffel 4" + }, + { + "type": "Spanish", + "title": "My Hero Academia Temporada 4" + }, + { + "type": "French", + "title": "My Hero Academia Saison 4" + } + ], + "aliases": [ + "Boku no Hero Academia 4th Season", + "My Hero Academia Season 4", + "僕のヒーローアカデミア", + "My Hero Academia Staffel 4", + "My Hero Academia Temporada 4", + "My Hero Academia Saison 4" + ], + "ids": { + "mal": 38408, + "jikan": 38408 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 34572, + "url": "https://myanimelist.net/anime/34572/Black_Clover", + "rank": 528, + "popularity": 54, + "score": 8.14, + "members": 1904780, + "year": 2017, + "default_title": "Black Clover", + "english_title": "Black Clover", + "cjk_title": "ブラッククローバー", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ブラッククローバー" + ], + "latin_titles": [ + "Black Clover", + "Black Clover" + ], + "titles": [ + { + "type": "Default", + "title": "Black Clover" + }, + { + "type": "Japanese", + "title": "ブラッククローバー" + }, + { + "type": "English", + "title": "Black Clover" + } + ], + "aliases": [ + "Black Clover", + "ブラッククローバー" + ], + "ids": { + "mal": 34572, + "jikan": 34572 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 27899, + "url": "https://myanimelist.net/anime/27899/Tokyo_Ghoul_√A", + "rank": 5053, + "popularity": 55, + "score": 7.03, + "members": 1900491, + "year": 2015, + "default_title": "Tokyo Ghoul √A", + "english_title": "Tokyo Ghoul √A", + "cjk_title": "東京喰種√A", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "東京喰種√A" + ], + "latin_titles": [ + "Tokyo Ghoul √A", + "Tokyo Ghoul Root A", + "Tokyo Ghoul 2nd Season", + "Tokyo Ghoul Second Season", + "Tokyo Ghoul √A" + ], + "titles": [ + { + "type": "Default", + "title": "Tokyo Ghoul √A" + }, + { + "type": "Synonym", + "title": "Tokyo Ghoul Root A" + }, + { + "type": "Synonym", + "title": "Tokyo Ghoul 2nd Season" + }, + { + "type": "Synonym", + "title": "Tokyo Ghoul Second Season" + }, + { + "type": "Japanese", + "title": "東京喰種√A" + }, + { + "type": "English", + "title": "Tokyo Ghoul √A" + } + ], + "aliases": [ + "Tokyo Ghoul √A", + "東京喰種√A", + "Tokyo Ghoul Root A", + "Tokyo Ghoul 2nd Season", + "Tokyo Ghoul Second Season" + ], + "ids": { + "mal": 27899, + "jikan": 27899 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 34134, + "url": "https://myanimelist.net/anime/34134/One_Punch_Man_2nd_Season", + "rank": 2134, + "popularity": 57, + "score": 7.53, + "members": 1885592, + "year": 2019, + "default_title": "One Punch Man 2nd Season", + "english_title": "One-Punch Man Season 2", + "cjk_title": "ワンパンマン 2期", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "ワンパンマン 2期" + ], + "latin_titles": [ + "One Punch Man 2nd Season", + "One Punch-Man 2", + "One-Punch Man 2", + "OPM 2", + "One-Punch Man Season 2", + "One Punch Man Staffel 2", + "One Punch Man Temporada 2", + "One Punch Man Saison 2" + ], + "titles": [ + { + "type": "Default", + "title": "One Punch Man 2nd Season" + }, + { + "type": "Synonym", + "title": "One Punch-Man 2" + }, + { + "type": "Synonym", + "title": "One-Punch Man 2" + }, + { + "type": "Synonym", + "title": "OPM 2" + }, + { + "type": "Japanese", + "title": "ワンパンマン 2期" + }, + { + "type": "English", + "title": "One-Punch Man Season 2" + }, + { + "type": "German", + "title": "One Punch Man Staffel 2" + }, + { + "type": "Spanish", + "title": "One Punch Man Temporada 2" + }, + { + "type": "French", + "title": "One Punch Man Saison 2" + } + ], + "aliases": [ + "One Punch Man 2nd Season", + "One-Punch Man Season 2", + "ワンパンマン 2期", + "One Punch-Man 2", + "One-Punch Man 2", + "OPM 2", + "One Punch Man Staffel 2", + "One Punch Man Temporada 2", + "One Punch Man Saison 2" + ], + "ids": { + "mal": 34134, + "jikan": 34134 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 14719, + "url": "https://myanimelist.net/anime/14719/JoJo_no_Kimyou_na_Bouken_TV", + "rank": 1019, + "popularity": 58, + "score": 7.87, + "members": 1863613, + "year": 2012, + "default_title": "JoJo no Kimyou na Bouken (TV)", + "english_title": "JoJo's Bizarre Adventure (2012)", + "cjk_title": "ジョジョの奇妙な冒険", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "ジョジョの奇妙な冒険" + ], + "latin_titles": [ + "JoJo no Kimyou na Bouken (TV)", + "JoJo no Kimyou na Bouken (2012)", + "Battle Tendency", + "Phantom Blood", + "Sentou Chouryuu", + "JoJo's Bizarre Adventure The Animation", + "JoJo's Bizarre Adventure (2012)", + "JoJo's Bizarre Adventure: Phantom Blood", + "JoJo's Bizarre Adventure. Phantom Blood", + "JoJo's Bizarre Adventure" + ], + "titles": [ + { + "type": "Default", + "title": "JoJo no Kimyou na Bouken (TV)" + }, + { + "type": "Synonym", + "title": "JoJo no Kimyou na Bouken (2012)" + }, + { + "type": "Synonym", + "title": "Battle Tendency" + }, + { + "type": "Synonym", + "title": "Phantom Blood" + }, + { + "type": "Synonym", + "title": "Sentou Chouryuu" + }, + { + "type": "Synonym", + "title": "JoJo's Bizarre Adventure The Animation" + }, + { + "type": "Japanese", + "title": "ジョジョの奇妙な冒険" + }, + { + "type": "English", + "title": "JoJo's Bizarre Adventure (2012)" + }, + { + "type": "German", + "title": "JoJo's Bizarre Adventure: Phantom Blood" + }, + { + "type": "Spanish", + "title": "JoJo's Bizarre Adventure. Phantom Blood" + }, + { + "type": "French", + "title": "JoJo's Bizarre Adventure" + } + ], + "aliases": [ + "JoJo no Kimyou na Bouken (TV)", + "JoJo's Bizarre Adventure (2012)", + "ジョジョの奇妙な冒険", + "JoJo no Kimyou na Bouken (2012)", + "Battle Tendency", + "Phantom Blood", + "Sentou Chouryuu", + "JoJo's Bizarre Adventure The Animation", + "JoJo's Bizarre Adventure: Phantom Blood", + "JoJo's Bizarre Adventure. Phantom Blood", + "JoJo's Bizarre Adventure" + ], + "ids": { + "mal": 14719, + "jikan": 14719 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 18679, + "url": "https://myanimelist.net/anime/18679/Kill_la_Kill", + "rank": 716, + "popularity": 59, + "score": 8.03, + "members": 1850270, + "year": 2013, + "default_title": "Kill la Kill", + "english_title": "Kill la Kill", + "cjk_title": "キルラキル", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "キルラキル" + ], + "latin_titles": [ + "Kill la Kill", + "KLK", + "Dressed to Kill", + "Kill la Kill", + "KILL la KILL", + "KILL la KILL", + "KILL la KILL" + ], + "titles": [ + { + "type": "Default", + "title": "Kill la Kill" + }, + { + "type": "Synonym", + "title": "KLK" + }, + { + "type": "Synonym", + "title": "Dressed to Kill" + }, + { + "type": "Japanese", + "title": "キルラキル" + }, + { + "type": "English", + "title": "Kill la Kill" + }, + { + "type": "German", + "title": "KILL la KILL" + }, + { + "type": "Spanish", + "title": "KILL la KILL" + }, + { + "type": "French", + "title": "KILL la KILL" + } + ], + "aliases": [ + "Kill la Kill", + "キルラキル", + "KLK", + "Dressed to Kill", + "KILL la KILL" + ], + "ids": { + "mal": 18679, + "jikan": 18679 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 6702, + "url": "https://myanimelist.net/anime/6702/Fairy_Tail", + "rank": 1942, + "popularity": 60, + "score": 7.57, + "members": 1847047, + "year": 2009, + "default_title": "Fairy Tail", + "english_title": "Fairy Tail", + "cjk_title": "FAIRY TAIL(フェアリーテイル)", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "FAIRY TAIL(フェアリーテイル)" + ], + "latin_titles": [ + "Fairy Tail", + "Fairy Tail" + ], + "titles": [ + { + "type": "Default", + "title": "Fairy Tail" + }, + { + "type": "Japanese", + "title": "FAIRY TAIL(フェアリーテイル)" + }, + { + "type": "English", + "title": "Fairy Tail" + } + ], + "aliases": [ + "Fairy Tail", + "FAIRY TAIL(フェアリーテイル)" + ], + "ids": { + "mal": 6702, + "jikan": 6702 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 37521, + "url": "https://myanimelist.net/anime/37521/Vinland_Saga", + "rank": 43, + "popularity": 61, + "score": 8.78, + "members": 1824799, + "year": 2019, + "default_title": "Vinland Saga", + "english_title": null, + "cjk_title": "ヴィンランド・サガ", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ヴィンランド・サガ" + ], + "latin_titles": [ + "Vinland Saga" + ], + "titles": [ + { + "type": "Default", + "title": "Vinland Saga" + }, + { + "type": "Japanese", + "title": "ヴィンランド・サガ" + } + ], + "aliases": [ + "Vinland Saga", + "ヴィンランド・サガ" + ], + "ids": { + "mal": 37521, + "jikan": 37521 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 35849, + "url": "https://myanimelist.net/anime/35849/Darling_in_the_FranXX", + "rank": 3989, + "popularity": 62, + "score": 7.2, + "members": 1817549, + "year": 2018, + "default_title": "Darling in the FranXX", + "english_title": "DARLING in the FRANXX", + "cjk_title": "ダーリン・イン・ザ・フランキス", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ダーリン・イン・ザ・フランキス" + ], + "latin_titles": [ + "Darling in the FranXX", + "DARLING in the FRANXX", + "Darling in the Franxx", + "Darling in The FranXX" + ], + "titles": [ + { + "type": "Default", + "title": "Darling in the FranXX" + }, + { + "type": "Japanese", + "title": "ダーリン・イン・ザ・フランキス" + }, + { + "type": "English", + "title": "DARLING in the FRANXX" + }, + { + "type": "German", + "title": "Darling in the Franxx" + }, + { + "type": "Spanish", + "title": "Darling in The FranXX" + } + ], + "aliases": [ + "Darling in the FranXX", + "DARLING in the FRANXX", + "ダーリン・イン・ザ・フランキス", + "Darling in the Franxx", + "Darling in The FranXX" + ], + "ids": { + "mal": 35849, + "jikan": 35849 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 11111, + "url": "https://myanimelist.net/anime/11111/Another", + "rank": 2444, + "popularity": 63, + "score": 7.46, + "members": 1786559, + "year": 2012, + "default_title": "Another", + "english_title": "Another", + "cjk_title": "アナザー", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "アナザー" + ], + "latin_titles": [ + "Another", + "Another" + ], + "titles": [ + { + "type": "Default", + "title": "Another" + }, + { + "type": "Japanese", + "title": "アナザー" + }, + { + "type": "English", + "title": "Another" + } + ], + "aliases": [ + "Another", + "アナザー" + ], + "ids": { + "mal": 11111, + "jikan": 11111 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 40456, + "url": "https://myanimelist.net/anime/40456/Kimetsu_no_Yaiba_Movie__Mugen_Ressha-hen", + "rank": 144, + "popularity": 64, + "score": 8.54, + "members": 1780174, + "year": null, + "default_title": "Kimetsu no Yaiba Movie: Mugen Ressha-hen", + "english_title": "Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train", + "cjk_title": "劇場版 鬼滅の刃 無限列車編", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "劇場版 鬼滅の刃 無限列車編" + ], + "latin_titles": [ + "Kimetsu no Yaiba Movie: Mugen Ressha-hen", + "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", + "Kimetsu no Yaiba: Infinity Train", + "Demon Slayer Movie: Infinity Train", + "Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train", + "Guardianes De La Noche - Kimetsu No Yaiba - Tren Infinito", + "Demon Slayer - Kimetsu no Yaiba - Le film : Le train de l'Infini" + ], + "titles": [ + { + "type": "Default", + "title": "Kimetsu no Yaiba Movie: Mugen Ressha-hen" + }, + { + "type": "Synonym", + "title": "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen" + }, + { + "type": "Synonym", + "title": "Kimetsu no Yaiba: Infinity Train" + }, + { + "type": "Synonym", + "title": "Demon Slayer Movie: Infinity Train" + }, + { + "type": "Japanese", + "title": "劇場版 鬼滅の刃 無限列車編" + }, + { + "type": "English", + "title": "Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train" + }, + { + "type": "Spanish", + "title": "Guardianes De La Noche - Kimetsu No Yaiba - Tren Infinito" + }, + { + "type": "French", + "title": "Demon Slayer - Kimetsu no Yaiba - Le film : Le train de l'Infini" + } + ], + "aliases": [ + "Kimetsu no Yaiba Movie: Mugen Ressha-hen", + "Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train", + "劇場版 鬼滅の刃 無限列車編", + "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", + "Kimetsu no Yaiba: Infinity Train", + "Demon Slayer Movie: Infinity Train", + "Guardianes De La Noche - Kimetsu No Yaiba - Tren Infinito", + "Demon Slayer - Kimetsu no Yaiba - Le film : Le train de l'Infini" + ], + "ids": { + "mal": 40456, + "jikan": 40456 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 3588, + "url": "https://myanimelist.net/anime/3588/Soul_Eater", + "rank": 1052, + "popularity": 65, + "score": 7.86, + "members": 1773491, + "year": 2008, + "default_title": "Soul Eater", + "english_title": "Soul Eater", + "cjk_title": "ソウルイーター", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ソウルイーター" + ], + "latin_titles": [ + "Soul Eater", + "Soul Eater" + ], + "titles": [ + { + "type": "Default", + "title": "Soul Eater" + }, + { + "type": "Japanese", + "title": "ソウルイーター" + }, + { + "type": "English", + "title": "Soul Eater" + } + ], + "aliases": [ + "Soul Eater", + "ソウルイーター" + ], + "ids": { + "mal": 3588, + "jikan": 3588 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 2001, + "url": "https://myanimelist.net/anime/2001/Tengen_Toppa_Gurren_Lagann", + "rank": 92, + "popularity": 66, + "score": 8.64, + "members": 1769583, + "year": 2007, + "default_title": "Tengen Toppa Gurren Lagann", + "english_title": "Gurren Lagann", + "cjk_title": "天元突破グレンラガン", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "天元突破グレンラガン" + ], + "latin_titles": [ + "Tengen Toppa Gurren Lagann", + "Tengen Toppa Gurren-Lagann", + "Making Break-Through Gurren Lagann", + "Heavenly Breakthrough Gurren Lagann", + "TTGL", + "Gurren Laggan", + "Gurren Lagann", + "Gurren Lagann", + "Gurren Lagann", + "Gurren Lagann" + ], + "titles": [ + { + "type": "Default", + "title": "Tengen Toppa Gurren Lagann" + }, + { + "type": "Synonym", + "title": "Tengen Toppa Gurren-Lagann" + }, + { + "type": "Synonym", + "title": "Making Break-Through Gurren Lagann" + }, + { + "type": "Synonym", + "title": "Heavenly Breakthrough Gurren Lagann" + }, + { + "type": "Synonym", + "title": "TTGL" + }, + { + "type": "Synonym", + "title": "Gurren Laggan" + }, + { + "type": "Japanese", + "title": "天元突破グレンラガン" + }, + { + "type": "English", + "title": "Gurren Lagann" + }, + { + "type": "German", + "title": "Gurren Lagann" + }, + { + "type": "Spanish", + "title": "Gurren Lagann" + }, + { + "type": "French", + "title": "Gurren Lagann" + } + ], + "aliases": [ + "Tengen Toppa Gurren Lagann", + "Gurren Lagann", + "天元突破グレンラガン", + "Tengen Toppa Gurren-Lagann", + "Making Break-Through Gurren Lagann", + "Heavenly Breakthrough Gurren Lagann", + "TTGL", + "Gurren Laggan" + ], + "ids": { + "mal": 2001, + "jikan": 2001 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 35790, + "url": "https://myanimelist.net/anime/35790/Tate_no_Yuusha_no_Nariagari", + "rank": 956, + "popularity": 67, + "score": 7.9, + "members": 1768608, + "year": 2019, + "default_title": "Tate no Yuusha no Nariagari", + "english_title": "The Rising of the Shield Hero", + "cjk_title": "盾の勇者の成り上がり", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "盾の勇者の成り上がり" + ], + "latin_titles": [ + "Tate no Yuusha no Nariagari", + "The Rising of the Shield Hero", + "The Rising of the Shield Hero", + "The Rising of the Shield Hero", + "The Rising of the Shield Hero" + ], + "titles": [ + { + "type": "Default", + "title": "Tate no Yuusha no Nariagari" + }, + { + "type": "Japanese", + "title": "盾の勇者の成り上がり" + }, + { + "type": "English", + "title": "The Rising of the Shield Hero" + }, + { + "type": "German", + "title": "The Rising of the Shield Hero" + }, + { + "type": "Spanish", + "title": "The Rising of the Shield Hero" + }, + { + "type": "French", + "title": "The Rising of the Shield Hero" + } + ], + "aliases": [ + "Tate no Yuusha no Nariagari", + "The Rising of the Shield Hero", + "盾の勇者の成り上がり" + ], + "ids": { + "mal": 35790, + "jikan": 35790 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 28999, + "url": "https://myanimelist.net/anime/28999/Charlotte", + "rank": 1286, + "popularity": 68, + "score": 7.76, + "members": 1766536, + "year": 2015, + "default_title": "Charlotte", + "english_title": "Charlotte", + "cjk_title": "Charlotte(シャーロット)", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "Charlotte(シャーロット)" + ], + "latin_titles": [ + "Charlotte", + "Charlotte" + ], + "titles": [ + { + "type": "Default", + "title": "Charlotte" + }, + { + "type": "Japanese", + "title": "Charlotte(シャーロット)" + }, + { + "type": "English", + "title": "Charlotte" + } + ], + "aliases": [ + "Charlotte", + "Charlotte(シャーロット)" + ], + "ids": { + "mal": 28999, + "jikan": 28999 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 29803, + "url": "https://myanimelist.net/anime/29803/Overlord", + "rank": 952, + "popularity": 69, + "score": 7.9, + "members": 1758631, + "year": 2015, + "default_title": "Overlord", + "english_title": "Overlord", + "cjk_title": "オーバーロード", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "オーバーロード" + ], + "latin_titles": [ + "Overlord", + "Overlord" + ], + "titles": [ + { + "type": "Default", + "title": "Overlord" + }, + { + "type": "Japanese", + "title": "オーバーロード" + }, + { + "type": "English", + "title": "Overlord" + } + ], + "aliases": [ + "Overlord", + "オーバーロード" + ], + "ids": { + "mal": 29803, + "jikan": 29803 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 13601, + "url": "https://myanimelist.net/anime/13601/Psycho-Pass", + "rank": 298, + "popularity": 70, + "score": 8.33, + "members": 1750685, + "year": 2012, + "default_title": "Psycho-Pass", + "english_title": "Psycho-Pass", + "cjk_title": "サイコパス", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "サイコパス" + ], + "latin_titles": [ + "Psycho-Pass", + "Psychopath", + "Psycho-Pass" + ], + "titles": [ + { + "type": "Default", + "title": "Psycho-Pass" + }, + { + "type": "Synonym", + "title": "Psychopath" + }, + { + "type": "Japanese", + "title": "サイコパス" + }, + { + "type": "English", + "title": "Psycho-Pass" + } + ], + "aliases": [ + "Psycho-Pass", + "サイコパス", + "Psychopath" + ], + "ids": { + "mal": 13601, + "jikan": 13601 + }, + "complexity_reasons": [ + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 28171, + "url": "https://myanimelist.net/anime/28171/Shokugeki_no_Souma", + "rank": 592, + "popularity": 71, + "score": 8.11, + "members": 1749892, + "year": 2015, + "default_title": "Shokugeki no Souma", + "english_title": "Food Wars! Shokugeki no Soma", + "cjk_title": "食戟のソーマ", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "食戟のソーマ" + ], + "latin_titles": [ + "Shokugeki no Souma", + "Shokugeki no Soma", + "Food Wars: Shokugeki no Soma", + "Food Wars! Shokugeki no Soma", + "Food Wars! Shokugeki no Soma", + "Food Wars! Shokugeki no Soma", + "Food Wars! Shokugeki no Soma" + ], + "titles": [ + { + "type": "Default", + "title": "Shokugeki no Souma" + }, + { + "type": "Synonym", + "title": "Shokugeki no Soma" + }, + { + "type": "Synonym", + "title": "Food Wars: Shokugeki no Soma" + }, + { + "type": "Japanese", + "title": "食戟のソーマ" + }, + { + "type": "English", + "title": "Food Wars! Shokugeki no Soma" + }, + { + "type": "German", + "title": "Food Wars! Shokugeki no Soma" + }, + { + "type": "Spanish", + "title": "Food Wars! Shokugeki no Soma" + }, + { + "type": "French", + "title": "Food Wars! Shokugeki no Soma" + } + ], + "aliases": [ + "Shokugeki no Souma", + "Food Wars! Shokugeki no Soma", + "食戟のソーマ", + "Shokugeki no Soma", + "Food Wars: Shokugeki no Soma" + ], + "ids": { + "mal": 28171, + "jikan": 28171 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 47778, + "url": "https://myanimelist.net/anime/47778/Kimetsu_no_Yaiba__Yuukaku-hen", + "rank": 71, + "popularity": 72, + "score": 8.69, + "members": 1744070, + "year": 2022, + "default_title": "Kimetsu no Yaiba: Yuukaku-hen", + "english_title": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", + "cjk_title": "鬼滅の刃 遊郭編", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "鬼滅の刃 遊郭編" + ], + "latin_titles": [ + "Kimetsu no Yaiba: Yuukaku-hen", + "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc" + ], + "titles": [ + { + "type": "Default", + "title": "Kimetsu no Yaiba: Yuukaku-hen" + }, + { + "type": "Japanese", + "title": "鬼滅の刃 遊郭編" + }, + { + "type": "English", + "title": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc" + } + ], + "aliases": [ + "Kimetsu no Yaiba: Yuukaku-hen", + "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", + "鬼滅の刃 遊郭編" + ], + "ids": { + "mal": 47778, + "jikan": 47778 + }, + "complexity_reasons": [ + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 37510, + "url": "https://myanimelist.net/anime/37510/Mob_Psycho_100_II", + "rank": 42, + "popularity": 73, + "score": 8.78, + "members": 1729146, + "year": 2019, + "default_title": "Mob Psycho 100 II", + "english_title": "Mob Psycho 100 II", + "cjk_title": "モブサイコ100 II", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "モブサイコ100 II" + ], + "latin_titles": [ + "Mob Psycho 100 II", + "Mob Psycho 100 2nd Season", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred", + "Mob Psycho 100 II" + ], + "titles": [ + { + "type": "Default", + "title": "Mob Psycho 100 II" + }, + { + "type": "Synonym", + "title": "Mob Psycho 100 2nd Season" + }, + { + "type": "Synonym", + "title": "Mob Psycho Hyaku" + }, + { + "type": "Synonym", + "title": "Mob Psycho One Hundred" + }, + { + "type": "Japanese", + "title": "モブサイコ100 II" + }, + { + "type": "English", + "title": "Mob Psycho 100 II" + } + ], + "aliases": [ + "Mob Psycho 100 II", + "モブサイコ100 II", + "Mob Psycho 100 2nd Season", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "ids": { + "mal": 37510, + "jikan": 37510 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "season/part/number marker", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 9989, + "url": "https://myanimelist.net/anime/9989/Ano_Hi_Mita_Hana_no_Namae_wo_Bokutachi_wa_Mada_Shiranai", + "rank": 326, + "popularity": 74, + "score": 8.29, + "members": 1709973, + "year": 2011, + "default_title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "english_title": "Anohana: The Flower We Saw That Day", + "cjk_title": "あの日見た花の名前を僕達はまだ知らない。", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "あの日見た花の名前を僕達はまだ知らない。" + ], + "latin_titles": [ + "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "AnoHana", + "We Still Don't Know the Name of the Flower We Saw That Day.", + "Anohana: The Flower We Saw That Day", + "AnoHana: Die Blume, die Wir an Jenem Tag Sahen", + "anohana: The Flower We Saw that Day", + "Anohana: The Flower We Saw That Day" + ], + "titles": [ + { + "type": "Default", + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai." + }, + { + "type": "Synonym", + "title": "AnoHana" + }, + { + "type": "Synonym", + "title": "We Still Don't Know the Name of the Flower We Saw That Day." + }, + { + "type": "Japanese", + "title": "あの日見た花の名前を僕達はまだ知らない。" + }, + { + "type": "English", + "title": "Anohana: The Flower We Saw That Day" + }, + { + "type": "German", + "title": "AnoHana: Die Blume, die Wir an Jenem Tag Sahen" + }, + { + "type": "Spanish", + "title": "anohana: The Flower We Saw that Day" + }, + { + "type": "French", + "title": "Anohana: The Flower We Saw That Day" + } + ], + "aliases": [ + "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "Anohana: The Flower We Saw That Day", + "あの日見た花の名前を僕達はまだ知らない。", + "AnoHana", + "We Still Don't Know the Name of the Flower We Saw That Day.", + "AnoHana: Die Blume, die Wir an Jenem Tag Sahen", + "anohana: The Flower We Saw that Day" + ], + "ids": { + "mal": 9989, + "jikan": 9989 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 15809, + "url": "https://myanimelist.net/anime/15809/Hataraku_Maou-sama", + "rank": 1466, + "popularity": 75, + "score": 7.7, + "members": 1658253, + "year": 2013, + "default_title": "Hataraku Maou-sama!", + "english_title": "The Devil is a Part-Timer!", + "cjk_title": "はたらく魔王さま!", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "はたらく魔王さま!" + ], + "latin_titles": [ + "Hataraku Maou-sama!", + "Hataraku Maou-sama!", + "The Devil is a Part-Timer!", + "The Devil is a Part-Timer!", + "The Devil is a Part-Timer!", + "The Devil is a Part-Timer!" + ], + "titles": [ + { + "type": "Default", + "title": "Hataraku Maou-sama!" + }, + { + "type": "Synonym", + "title": "Hataraku Maou-sama!" + }, + { + "type": "Japanese", + "title": "はたらく魔王さま!" + }, + { + "type": "English", + "title": "The Devil is a Part-Timer!" + }, + { + "type": "German", + "title": "The Devil is a Part-Timer!" + }, + { + "type": "Spanish", + "title": "The Devil is a Part-Timer!" + }, + { + "type": "French", + "title": "The Devil is a Part-Timer!" + } + ], + "aliases": [ + "Hataraku Maou-sama!", + "The Devil is a Part-Timer!", + "はたらく魔王さま!" + ], + "ids": { + "mal": 15809, + "jikan": 15809 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z" + }, + { + "type": "anime", + "mal_id": 32937, + "url": "https://myanimelist.net/anime/32937/Kono_Subarashii_Sekai_ni_Shukufuku_wo_2", + "rank": 399, + "popularity": 76, + "score": 8.24, + "members": 1656170, + "year": 2017, + "default_title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "english_title": "KonoSuba: God's Blessing on This Wonderful World! 2", + "cjk_title": "この素晴らしい世界に祝福を! 2", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "この素晴らしい世界に祝福を! 2" + ], + "latin_titles": [ + "Kono Subarashii Sekai ni Shukufuku wo! 2", + "Give Blessings to This Wonderful World! 2", + "KonoSuba: God's Blessing on This Wonderful World! 2", + "KonoSuba: God's blessing on this wonderful world! 2", + "KonoSuba: God's blessing on this wonderful world! 2", + "KonoSuba: God's blessing on this wonderful world! 2" + ], + "titles": [ + { + "type": "Default", + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2" + }, + { + "type": "Synonym", + "title": "Give Blessings to This Wonderful World! 2" + }, + { + "type": "Japanese", + "title": "この素晴らしい世界に祝福を! 2" + }, + { + "type": "English", + "title": "KonoSuba: God's Blessing on This Wonderful World! 2" + }, + { + "type": "German", + "title": "KonoSuba: God's blessing on this wonderful world! 2" + }, + { + "type": "Spanish", + "title": "KonoSuba: God's blessing on this wonderful world! 2" + }, + { + "type": "French", + "title": "KonoSuba: God's blessing on this wonderful world! 2" + } + ], + "aliases": [ + "Kono Subarashii Sekai ni Shukufuku wo! 2", + "KonoSuba: God's Blessing on This Wonderful World! 2", + "この素晴らしい世界に祝福を! 2", + "Give Blessings to This Wonderful World! 2", + "KonoSuba: God's blessing on this wonderful world! 2" + ], + "ids": { + "mal": 32937, + "jikan": 32937 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 28121, + "url": "https://myanimelist.net/anime/28121/Dungeon_ni_Deai_wo_Motomeru_no_wa_Machigatteiru_Darou_ka", + "rank": 2116, + "popularity": 77, + "score": 7.53, + "members": 1655179, + "year": 2015, + "default_title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "english_title": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "cjk_title": "ダンジョンに出会いを求めるのは間違っているだろうか", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "ダンジョンに出会いを求めるのは間違っているだろうか" + ], + "latin_titles": [ + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "DanMachi", + "Is It Wrong That I Want to Meet You in a Dungeon", + "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "DANMACHI ¿Qué tiene de Malo intentar Ligar en una Mazmorra?", + "DanMachi: Familia Myth" + ], + "titles": [ + { + "type": "Default", + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka" + }, + { + "type": "Synonym", + "title": "DanMachi" + }, + { + "type": "Synonym", + "title": "Is It Wrong That I Want to Meet You in a Dungeon" + }, + { + "type": "Japanese", + "title": "ダンジョンに出会いを求めるのは間違っているだろうか" + }, + { + "type": "English", + "title": "Is It Wrong to Try to Pick Up Girls in a Dungeon?" + }, + { + "type": "German", + "title": "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?" + }, + { + "type": "Spanish", + "title": "DANMACHI ¿Qué tiene de Malo intentar Ligar en una Mazmorra?" + }, + { + "type": "French", + "title": "DanMachi: Familia Myth" + } + ], + "aliases": [ + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "ダンジョンに出会いを求めるのは間違っているだろうか", + "DanMachi", + "Is It Wrong That I Want to Meet You in a Dungeon", + "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "DANMACHI ¿Qué tiene de Malo intentar Ligar en una Mazmorra?", + "DanMachi: Familia Myth" + ], + "ids": { + "mal": 28121, + "jikan": 28121 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 37430, + "url": "https://myanimelist.net/anime/37430/Tensei_shitara_Slime_Datta_Ken", + "rank": 561, + "popularity": 78, + "score": 8.13, + "members": 1647510, + "year": 2018, + "default_title": "Tensei shitara Slime Datta Ken", + "english_title": "That Time I Got Reincarnated as a Slime", + "cjk_title": "転生したらスライムだった件", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "転生したらスライムだった件" + ], + "latin_titles": [ + "Tensei shitara Slime Datta Ken", + "TenSura", + "That Time I Got Reincarnated as a Slime", + "That Time I Got Reincamrnated as a Slime", + "That Time I Got Reincarnated as a Slime", + "That Time I Got Reincarnated as a Slime" + ], + "titles": [ + { + "type": "Default", + "title": "Tensei shitara Slime Datta Ken" + }, + { + "type": "Synonym", + "title": "TenSura" + }, + { + "type": "Japanese", + "title": "転生したらスライムだった件" + }, + { + "type": "English", + "title": "That Time I Got Reincarnated as a Slime" + }, + { + "type": "German", + "title": "That Time I Got Reincamrnated as a Slime" + }, + { + "type": "Spanish", + "title": "That Time I Got Reincarnated as a Slime" + }, + { + "type": "French", + "title": "That Time I Got Reincarnated as a Slime" + } + ], + "aliases": [ + "Tensei shitara Slime Datta Ken", + "That Time I Got Reincarnated as a Slime", + "転生したらスライムだった件", + "TenSura", + "That Time I Got Reincamrnated as a Slime" + ], + "ids": { + "mal": 37430, + "jikan": 37430 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 42897, + "url": "https://myanimelist.net/anime/42897/Horimiya", + "rank": 485, + "popularity": 79, + "score": 8.18, + "members": 1642538, + "year": 2021, + "default_title": "Horimiya", + "english_title": "Horimiya", + "cjk_title": "ホリミヤ", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ホリミヤ" + ], + "latin_titles": [ + "Horimiya", + "Hori-san and Miyamura-kun", + "Horimiya" + ], + "titles": [ + { + "type": "Default", + "title": "Horimiya" + }, + { + "type": "Synonym", + "title": "Hori-san and Miyamura-kun" + }, + { + "type": "Japanese", + "title": "ホリミヤ" + }, + { + "type": "English", + "title": "Horimiya" + } + ], + "aliases": [ + "Horimiya", + "ホリミヤ", + "Hori-san and Miyamura-kun" + ], + "ids": { + "mal": 42897, + "jikan": 42897 + }, + "complexity_reasons": [ + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 34933, + "url": "https://myanimelist.net/anime/34933/Kakegurui", + "rank": 3939, + "popularity": 80, + "score": 7.21, + "members": 1628154, + "year": 2017, + "default_title": "Kakegurui", + "english_title": "Kakegurui", + "cjk_title": "賭ケグルイ", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "賭ケグルイ" + ], + "latin_titles": [ + "Kakegurui", + "Kakegurui: Compulsive Gambler", + "Gambling School", + "Kakegurui", + "Kakegurui: Das Leben ist ein Spiel", + "Gambling School" + ], + "titles": [ + { + "type": "Default", + "title": "Kakegurui" + }, + { + "type": "Synonym", + "title": "Kakegurui: Compulsive Gambler" + }, + { + "type": "Synonym", + "title": "Gambling School" + }, + { + "type": "Japanese", + "title": "賭ケグルイ" + }, + { + "type": "English", + "title": "Kakegurui" + }, + { + "type": "German", + "title": "Kakegurui: Das Leben ist ein Spiel" + }, + { + "type": "French", + "title": "Gambling School" + } + ], + "aliases": [ + "Kakegurui", + "賭ケグルイ", + "Kakegurui: Compulsive Gambler", + "Gambling School", + "Kakegurui: Das Leben ist ein Spiel" + ], + "ids": { + "mal": 34933, + "jikan": 34933 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 226, + "url": "https://myanimelist.net/anime/226/Elfen_Lied", + "rank": 2454, + "popularity": 81, + "score": 7.46, + "members": 1617749, + "year": 2004, + "default_title": "Elfen Lied", + "english_title": "Elfen Lied", + "cjk_title": "エルフェンリート", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "エルフェンリート" + ], + "latin_titles": [ + "Elfen Lied", + "Elfen Song", + "Elfic Song", + "Elf Song", + "Elfen Lied" + ], + "titles": [ + { + "type": "Default", + "title": "Elfen Lied" + }, + { + "type": "Synonym", + "title": "Elfen Song" + }, + { + "type": "Synonym", + "title": "Elfic Song" + }, + { + "type": "Synonym", + "title": "Elf Song" + }, + { + "type": "Japanese", + "title": "エルフェンリート" + }, + { + "type": "English", + "title": "Elfen Lied" + } + ], + "aliases": [ + "Elfen Lied", + "エルフェンリート", + "Elfen Song", + "Elfic Song", + "Elf Song" + ], + "ids": { + "mal": 226, + "jikan": 226 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 8074, + "url": "https://myanimelist.net/anime/8074/Highschool_of_the_Dead", + "rank": 4840, + "popularity": 82, + "score": 7.06, + "members": 1612012, + "year": 2010, + "default_title": "Highschool of the Dead", + "english_title": "High School of the Dead", + "cjk_title": "学園黙示録 HIGHSCHOOL OF THE DEAD", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "学園黙示録 HIGHSCHOOL OF THE DEAD" + ], + "latin_titles": [ + "Highschool of the Dead", + "Gakuen Mokushiroku: Highschool of the Dead", + "HOTD", + "HSOTD", + "High School of the Dead", + "High School Of The Dead: Apocalipsis en el Instituto", + "High School of The Dead" + ], + "titles": [ + { + "type": "Default", + "title": "Highschool of the Dead" + }, + { + "type": "Synonym", + "title": "Gakuen Mokushiroku: Highschool of the Dead" + }, + { + "type": "Synonym", + "title": "HOTD" + }, + { + "type": "Synonym", + "title": "HSOTD" + }, + { + "type": "Japanese", + "title": "学園黙示録 HIGHSCHOOL OF THE DEAD" + }, + { + "type": "English", + "title": "High School of the Dead" + }, + { + "type": "Spanish", + "title": "High School Of The Dead: Apocalipsis en el Instituto" + }, + { + "type": "French", + "title": "High School of The Dead" + } + ], + "aliases": [ + "Highschool of the Dead", + "High School of the Dead", + "学園黙示録 HIGHSCHOOL OF THE DEAD", + "Gakuen Mokushiroku: Highschool of the Dead", + "HOTD", + "HSOTD", + "High School Of The Dead: Apocalipsis en el Instituto", + "High School of The Dead" + ], + "ids": { + "mal": 8074, + "jikan": 8074 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 10087, + "url": "https://myanimelist.net/anime/10087/Fate_Zero", + "rank": 369, + "popularity": 83, + "score": 8.26, + "members": 1605483, + "year": 2011, + "default_title": "Fate/Zero", + "english_title": "Fate/Zero", + "cjk_title": "フェイト/ゼロ", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "フェイト/ゼロ" + ], + "latin_titles": [ + "Fate/Zero", + "Fate/Zero" + ], + "titles": [ + { + "type": "Default", + "title": "Fate/Zero" + }, + { + "type": "Japanese", + "title": "フェイト/ゼロ" + }, + { + "type": "English", + "title": "Fate/Zero" + } + ], + "aliases": [ + "Fate/Zero", + "フェイト/ゼロ" + ], + "ids": { + "mal": 10087, + "jikan": 10087 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 39535, + "url": "https://myanimelist.net/anime/39535/Mushoku_Tensei__Isekai_Ittara_Honki_Dasu", + "rank": 295, + "popularity": 84, + "score": 8.33, + "members": 1577557, + "year": 2021, + "default_title": "Mushoku Tensei: Isekai Ittara Honki Dasu", + "english_title": "Mushoku Tensei: Jobless Reincarnation", + "cjk_title": "無職転生 ~異世界行ったら本気だす~", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "無職転生 ~異世界行ったら本気だす~" + ], + "latin_titles": [ + "Mushoku Tensei: Isekai Ittara Honki Dasu", + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Jobless Reincarnation", + "Mushoku Tensei: Jobless Reincarnation", + "Mushoku Tensei: Jobless Reincarnation" + ], + "titles": [ + { + "type": "Default", + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu" + }, + { + "type": "Synonym", + "title": "Jobless Reincarnation: I Will Seriously Try If I Go To Another World" + }, + { + "type": "Japanese", + "title": "無職転生 ~異世界行ったら本気だす~" + }, + { + "type": "English", + "title": "Mushoku Tensei: Jobless Reincarnation" + }, + { + "type": "German", + "title": "Mushoku Tensei: Jobless Reincarnation" + }, + { + "type": "French", + "title": "Mushoku Tensei: Jobless Reincarnation" + } + ], + "aliases": [ + "Mushoku Tensei: Isekai Ittara Honki Dasu", + "Mushoku Tensei: Jobless Reincarnation", + "無職転生 ~異世界行ったら本気だす~", + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World" + ], + "ids": { + "mal": 39535, + "jikan": 39535 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 30654, + "url": "https://myanimelist.net/anime/30654/Ansatsu_Kyoushitsu_2nd_Season", + "rank": 177, + "popularity": 86, + "score": 8.47, + "members": 1570600, + "year": 2016, + "default_title": "Ansatsu Kyoushitsu 2nd Season", + "english_title": "Assassination Classroom Second Season", + "cjk_title": "暗殺教室 第2期", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "暗殺教室 第2期" + ], + "latin_titles": [ + "Ansatsu Kyoushitsu 2nd Season", + "Ansatsu Kyoushitsu Season 2", + "Ansatsu Kyoushitsu Final Season", + "Assassination Classroom Second Season", + "Assassination Classroom Staffel 2", + "Assassination Classroom Temporada 2", + "Assassination Classroom Saison 2" + ], + "titles": [ + { + "type": "Default", + "title": "Ansatsu Kyoushitsu 2nd Season" + }, + { + "type": "Synonym", + "title": "Ansatsu Kyoushitsu Season 2" + }, + { + "type": "Synonym", + "title": "Ansatsu Kyoushitsu Final Season" + }, + { + "type": "Japanese", + "title": "暗殺教室 第2期" + }, + { + "type": "English", + "title": "Assassination Classroom Second Season" + }, + { + "type": "German", + "title": "Assassination Classroom Staffel 2" + }, + { + "type": "Spanish", + "title": "Assassination Classroom Temporada 2" + }, + { + "type": "French", + "title": "Assassination Classroom Saison 2" + } + ], + "aliases": [ + "Ansatsu Kyoushitsu 2nd Season", + "Assassination Classroom Second Season", + "暗殺教室 第2期", + "Ansatsu Kyoushitsu Season 2", + "Ansatsu Kyoushitsu Final Season", + "Assassination Classroom Staffel 2", + "Assassination Classroom Temporada 2", + "Assassination Classroom Saison 2" + ], + "ids": { + "mal": 30654, + "jikan": 30654 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 14813, + "url": "https://myanimelist.net/anime/14813/Yahari_Ore_no_Seishun_Love_Comedy_wa_Machigatteiru", + "rank": 762, + "popularity": 85, + "score": 8, + "members": 1570555, + "year": 2013, + "default_title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru.", + "english_title": "My Teen Romantic Comedy SNAFU", + "cjk_title": "やはり俺の青春ラブコメはまちがっている。", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "やはり俺の青春ラブコメはまちがっている。" + ], + "latin_titles": [ + "Yahari Ore no Seishun Love Comedy wa Machigatteiru.", + "Oregairu", + "My youth romantic comedy is wrong as I expected.", + "My Teen Romantic Comedy SNAFU", + "My Teen Romantic Comedy SNAFU", + "My Teen Romantic Comedy SNAFU", + "My Teen Romantic Comedy SNAFU" + ], + "titles": [ + { + "type": "Default", + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru." + }, + { + "type": "Synonym", + "title": "Oregairu" + }, + { + "type": "Synonym", + "title": "My youth romantic comedy is wrong as I expected." + }, + { + "type": "Japanese", + "title": "やはり俺の青春ラブコメはまちがっている。" + }, + { + "type": "English", + "title": "My Teen Romantic Comedy SNAFU" + }, + { + "type": "German", + "title": "My Teen Romantic Comedy SNAFU" + }, + { + "type": "Spanish", + "title": "My Teen Romantic Comedy SNAFU" + }, + { + "type": "French", + "title": "My Teen Romantic Comedy SNAFU" + } + ], + "aliases": [ + "Yahari Ore no Seishun Love Comedy wa Machigatteiru.", + "My Teen Romantic Comedy SNAFU", + "やはり俺の青春ラブコメはまちがっている。", + "Oregairu", + "My youth romantic comedy is wrong as I expected." + ], + "ids": { + "mal": 14813, + "jikan": 14813 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 28891, + "url": "https://myanimelist.net/anime/28891/Haikyuu_Second_Season", + "rank": 101, + "popularity": 87, + "score": 8.62, + "members": 1568912, + "year": 2015, + "default_title": "Haikyuu!! Second Season", + "english_title": "Haikyu!! 2nd Season", + "cjk_title": "ハイキュー!! セカンドシーズン", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ハイキュー!! セカンドシーズン" + ], + "latin_titles": [ + "Haikyuu!! Second Season", + "Haikyuu!! Second Season", + "Haikyu!! 2nd Season", + "Haikyu!! Staffel 2", + "Haikyu!! Los Ases del Vóley Temporada 2", + "Haikyu!! Saison 2" + ], + "titles": [ + { + "type": "Default", + "title": "Haikyuu!! Second Season" + }, + { + "type": "Synonym", + "title": "Haikyuu!! Second Season" + }, + { + "type": "Japanese", + "title": "ハイキュー!! セカンドシーズン" + }, + { + "type": "English", + "title": "Haikyu!! 2nd Season" + }, + { + "type": "German", + "title": "Haikyu!! Staffel 2" + }, + { + "type": "Spanish", + "title": "Haikyu!! Los Ases del Vóley Temporada 2" + }, + { + "type": "French", + "title": "Haikyu!! Saison 2" + } + ], + "aliases": [ + "Haikyuu!! Second Season", + "Haikyu!! 2nd Season", + "ハイキュー!! セカンドシーズン", + "Haikyu!! Staffel 2", + "Haikyu!! Los Ases del Vóley Temporada 2", + "Haikyu!! Saison 2" + ], + "ids": { + "mal": 28891, + "jikan": 28891 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 48583, + "url": "https://myanimelist.net/anime/48583/Shingeki_no_Kyojin__The_Final_Season_Part_2", + "rank": 46, + "popularity": 88, + "score": 8.77, + "members": 1563350, + "year": 2022, + "default_title": "Shingeki no Kyojin: The Final Season Part 2", + "english_title": "Attack on Titan: Final Season Part 2", + "cjk_title": "進撃の巨人 The Final Season Part 2", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "進撃の巨人 The Final Season Part 2" + ], + "latin_titles": [ + "Shingeki no Kyojin: The Final Season Part 2", + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4", + "Attack on Titan: Final Season Part 2" + ], + "titles": [ + { + "type": "Default", + "title": "Shingeki no Kyojin: The Final Season Part 2" + }, + { + "type": "Synonym", + "title": "Shingeki no Kyojin Season 4" + }, + { + "type": "Synonym", + "title": "Attack on Titan Season 4" + }, + { + "type": "Japanese", + "title": "進撃の巨人 The Final Season Part 2" + }, + { + "type": "English", + "title": "Attack on Titan: Final Season Part 2" + } + ], + "aliases": [ + "Shingeki no Kyojin: The Final Season Part 2", + "Attack on Titan: Final Season Part 2", + "進撃の巨人 The Final Season Part 2", + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "ids": { + "mal": 48583, + "jikan": 48583 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 121, + "url": "https://myanimelist.net/anime/121/Fullmetal_Alchemist", + "rank": 566, + "popularity": 89, + "score": 8.12, + "members": 1559415, + "year": 2003, + "default_title": "Fullmetal Alchemist", + "english_title": "Fullmetal Alchemist", + "cjk_title": "鋼の錬金術師", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "鋼の錬金術師" + ], + "latin_titles": [ + "Fullmetal Alchemist", + "Hagane no Renkinjutsushi", + "FMA", + "Full Metal Alchemist", + "Fullmetal Alchemist" + ], + "titles": [ + { + "type": "Default", + "title": "Fullmetal Alchemist" + }, + { + "type": "Synonym", + "title": "Hagane no Renkinjutsushi" + }, + { + "type": "Synonym", + "title": "FMA" + }, + { + "type": "Synonym", + "title": "Full Metal Alchemist" + }, + { + "type": "Japanese", + "title": "鋼の錬金術師" + }, + { + "type": "English", + "title": "Fullmetal Alchemist" + } + ], + "aliases": [ + "Fullmetal Alchemist", + "鋼の錬金術師", + "Hagane no Renkinjutsushi", + "FMA", + "Full Metal Alchemist" + ], + "ids": { + "mal": 121, + "jikan": 121 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 30503, + "url": "https://myanimelist.net/anime/30503/Noragami_Aragoto", + "rank": 542, + "popularity": 90, + "score": 8.14, + "members": 1557674, + "year": 2015, + "default_title": "Noragami Aragoto", + "english_title": "Noragami Aragoto", + "cjk_title": "ノラガミ ARAGOTO", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ノラガミ ARAGOTO" + ], + "latin_titles": [ + "Noragami Aragoto", + "Noragami Aragoto" + ], + "titles": [ + { + "type": "Default", + "title": "Noragami Aragoto" + }, + { + "type": "Japanese", + "title": "ノラガミ ARAGOTO" + }, + { + "type": "English", + "title": "Noragami Aragoto" + } + ], + "aliases": [ + "Noragami Aragoto", + "ノラガミ ARAGOTO" + ], + "ids": { + "mal": 30503, + "jikan": 30503 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 31478, + "url": "https://myanimelist.net/anime/31478/Bungou_Stray_Dogs", + "rank": 1184, + "popularity": 91, + "score": 7.8, + "members": 1555069, + "year": 2016, + "default_title": "Bungou Stray Dogs", + "english_title": "Bungo Stray Dogs", + "cjk_title": "文豪ストレイドッグス", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "文豪ストレイドッグス" + ], + "latin_titles": [ + "Bungou Stray Dogs", + "Literary Stray Dogs", + "BSD", + "Bungo Stray Dogs", + "Bungo Stray Dogs", + "Bungo Stray Dogs", + "Bungo Stray Dogs" + ], + "titles": [ + { + "type": "Default", + "title": "Bungou Stray Dogs" + }, + { + "type": "Synonym", + "title": "Literary Stray Dogs" + }, + { + "type": "Synonym", + "title": "BSD" + }, + { + "type": "Japanese", + "title": "文豪ストレイドッグス" + }, + { + "type": "English", + "title": "Bungo Stray Dogs" + }, + { + "type": "German", + "title": "Bungo Stray Dogs" + }, + { + "type": "Spanish", + "title": "Bungo Stray Dogs" + }, + { + "type": "French", + "title": "Bungo Stray Dogs" + } + ], + "aliases": [ + "Bungou Stray Dogs", + "Bungo Stray Dogs", + "文豪ストレイドッグス", + "Literary Stray Dogs", + "BSD" + ], + "ids": { + "mal": 31478, + "jikan": 31478 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 34599, + "url": "https://myanimelist.net/anime/34599/Made_in_Abyss", + "rank": 103, + "popularity": 92, + "score": 8.62, + "members": 1553935, + "year": 2017, + "default_title": "Made in Abyss", + "english_title": "Made in Abyss", + "cjk_title": "メイドインアビス", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "メイドインアビス" + ], + "latin_titles": [ + "Made in Abyss", + "Made in Abyss" + ], + "titles": [ + { + "type": "Default", + "title": "Made in Abyss" + }, + { + "type": "Japanese", + "title": "メイドインアビス" + }, + { + "type": "English", + "title": "Made in Abyss" + } + ], + "aliases": [ + "Made in Abyss", + "メイドインアビス" + ], + "ids": { + "mal": 34599, + "jikan": 34599 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 38671, + "url": "https://myanimelist.net/anime/38671/Enen_no_Shouboutai", + "rank": 1399, + "popularity": 93, + "score": 7.72, + "members": 1546871, + "year": 2019, + "default_title": "Enen no Shouboutai", + "english_title": "Fire Force", + "cjk_title": "炎炎ノ消防隊", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "炎炎ノ消防隊" + ], + "latin_titles": [ + "Enen no Shouboutai", + "Fire Brigade of Flames", + "Fire Force", + "Fire Force", + "Fire Force", + "Fire Force" + ], + "titles": [ + { + "type": "Default", + "title": "Enen no Shouboutai" + }, + { + "type": "Synonym", + "title": "Fire Brigade of Flames" + }, + { + "type": "Japanese", + "title": "炎炎ノ消防隊" + }, + { + "type": "English", + "title": "Fire Force" + }, + { + "type": "German", + "title": "Fire Force" + }, + { + "type": "Spanish", + "title": "Fire Force" + }, + { + "type": "French", + "title": "Fire Force" + } + ], + "aliases": [ + "Enen no Shouboutai", + "Fire Force", + "炎炎ノ消防隊", + "Fire Brigade of Flames" + ], + "ids": { + "mal": 38671, + "jikan": 38671 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 11617, + "url": "https://myanimelist.net/anime/11617/High_School_DxD", + "rank": 3200, + "popularity": 94, + "score": 7.32, + "members": 1539010, + "year": 2012, + "default_title": "High School DxD", + "english_title": "High School DxD", + "cjk_title": "ハイスクールD×D", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ハイスクールD×D" + ], + "latin_titles": [ + "High School DxD", + "Highschool DxD", + "High School DxD", + "Highschool DxD" + ], + "titles": [ + { + "type": "Default", + "title": "High School DxD" + }, + { + "type": "Synonym", + "title": "Highschool DxD" + }, + { + "type": "Japanese", + "title": "ハイスクールD×D" + }, + { + "type": "English", + "title": "High School DxD" + }, + { + "type": "German", + "title": "Highschool DxD" + } + ], + "aliases": [ + "High School DxD", + "ハイスクールD×D", + "Highschool DxD" + ], + "ids": { + "mal": 11617, + "jikan": 11617 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 40591, + "url": "https://myanimelist.net/anime/40591/Kaguya-sama_wa_Kokurasetai_Tensai-tachi_no_Renai_Zunousen", + "rank": 109, + "popularity": 96, + "score": 8.61, + "members": 1502837, + "year": 2020, + "default_title": "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", + "english_title": "Kaguya-sama: Love is War?", + "cjk_title": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~" + ], + "latin_titles": [ + "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", + "Kaguya-sama: Love is War 2nd Season", + "Kaguya-sama: Love is War?", + "Kaguya-sama: Love Is War Staffel 2", + "Kaguya-sama: Love Is War? Temporada 2", + "Kaguya-sama: Love is War Saison 2" + ], + "titles": [ + { + "type": "Default", + "title": "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen" + }, + { + "type": "Synonym", + "title": "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season" + }, + { + "type": "Synonym", + "title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season" + }, + { + "type": "Synonym", + "title": "Kaguya-sama: Love is War 2nd Season" + }, + { + "type": "Japanese", + "title": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~" + }, + { + "type": "English", + "title": "Kaguya-sama: Love is War?" + }, + { + "type": "German", + "title": "Kaguya-sama: Love Is War Staffel 2" + }, + { + "type": "Spanish", + "title": "Kaguya-sama: Love Is War? Temporada 2" + }, + { + "type": "French", + "title": "Kaguya-sama: Love is War Saison 2" + } + ], + "aliases": [ + "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", + "Kaguya-sama: Love is War?", + "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", + "Kaguya-sama: Love is War 2nd Season", + "Kaguya-sama: Love Is War Staffel 2", + "Kaguya-sama: Love Is War? Temporada 2", + "Kaguya-sama: Love is War Saison 2" + ], + "ids": { + "mal": 40591, + "jikan": 40591 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 5081, + "url": "https://myanimelist.net/anime/5081/Bakemonogatari", + "rank": 302, + "popularity": 97, + "score": 8.32, + "members": 1493023, + "year": 2009, + "default_title": "Bakemonogatari", + "english_title": "Bakemonogatari", + "cjk_title": "化物語", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "化物語" + ], + "latin_titles": [ + "Bakemonogatari", + "Ghostory", + "Monstory", + "Bakemonogatari" + ], + "titles": [ + { + "type": "Default", + "title": "Bakemonogatari" + }, + { + "type": "Synonym", + "title": "Ghostory" + }, + { + "type": "Synonym", + "title": "Monstory" + }, + { + "type": "Japanese", + "title": "化物語" + }, + { + "type": "English", + "title": "Bakemonogatari" + } + ], + "aliases": [ + "Bakemonogatari", + "化物語", + "Ghostory", + "Monstory" + ], + "ids": { + "mal": 5081, + "jikan": 5081 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 6746, + "url": "https://myanimelist.net/anime/6746/Durarara", + "rank": 610, + "popularity": 98, + "score": 8.09, + "members": 1492899, + "year": 2010, + "default_title": "Durarara!!", + "english_title": "Durarara!!", + "cjk_title": "デュラララ!!", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "デュラララ!!" + ], + "latin_titles": [ + "Durarara!!", + "Dhurarara!!", + "Dyurarara!!", + "Dulalala!!", + "Dullalala!!", + "DRRR!!", + "Durarara!!" + ], + "titles": [ + { + "type": "Default", + "title": "Durarara!!" + }, + { + "type": "Synonym", + "title": "Dhurarara!!" + }, + { + "type": "Synonym", + "title": "Dyurarara!!" + }, + { + "type": "Synonym", + "title": "Dulalala!!" + }, + { + "type": "Synonym", + "title": "Dullalala!!" + }, + { + "type": "Synonym", + "title": "DRRR!!" + }, + { + "type": "Japanese", + "title": "デュラララ!!" + }, + { + "type": "English", + "title": "Durarara!!" + } + ], + "aliases": [ + "Durarara!!", + "デュラララ!!", + "Dhurarara!!", + "Dyurarara!!", + "Dulalala!!", + "Dullalala!!", + "DRRR!!" + ], + "ids": { + "mal": 6746, + "jikan": 6746 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 431, + "url": "https://myanimelist.net/anime/431/Howl_no_Ugoku_Shiro", + "rank": 80, + "popularity": 99, + "score": 8.67, + "members": 1492172, + "year": null, + "default_title": "Howl no Ugoku Shiro", + "english_title": "Howl's Moving Castle", + "cjk_title": "ハウルの動く城", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "ハウルの動く城" + ], + "latin_titles": [ + "Howl no Ugoku Shiro", + "Howl's Moving Castle", + "Das wandelnde Schloss", + "El Castillo Ambulante", + "Le Château ambulant" + ], + "titles": [ + { + "type": "Default", + "title": "Howl no Ugoku Shiro" + }, + { + "type": "Japanese", + "title": "ハウルの動く城" + }, + { + "type": "English", + "title": "Howl's Moving Castle" + }, + { + "type": "German", + "title": "Das wandelnde Schloss" + }, + { + "type": "Spanish", + "title": "El Castillo Ambulante" + }, + { + "type": "French", + "title": "Le Château ambulant" + } + ], + "aliases": [ + "Howl no Ugoku Shiro", + "Howl's Moving Castle", + "ハウルの動く城", + "Das wandelnde Schloss", + "El Castillo Ambulante", + "Le Château ambulant" + ], + "ids": { + "mal": 431, + "jikan": 431 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 12189, + "url": "https://myanimelist.net/anime/12189/Hyouka", + "rank": 677, + "popularity": 100, + "score": 8.05, + "members": 1481401, + "year": 2012, + "default_title": "Hyouka", + "english_title": "Hyouka", + "cjk_title": "氷菓", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "氷菓" + ], + "latin_titles": [ + "Hyouka", + "Hyou-ka", + "Hyouka: You can't escape", + "Hyou-ka: You can't escape", + "Hyoka", + "Hyouka" + ], + "titles": [ + { + "type": "Default", + "title": "Hyouka" + }, + { + "type": "Synonym", + "title": "Hyou-ka" + }, + { + "type": "Synonym", + "title": "Hyouka: You can't escape" + }, + { + "type": "Synonym", + "title": "Hyou-ka: You can't escape" + }, + { + "type": "Synonym", + "title": "Hyoka" + }, + { + "type": "Japanese", + "title": "氷菓" + }, + { + "type": "English", + "title": "Hyouka" + } + ], + "aliases": [ + "Hyouka", + "氷菓", + "Hyou-ka", + "Hyouka: You can't escape", + "Hyou-ka: You can't escape", + "Hyoka" + ], + "ids": { + "mal": 12189, + "jikan": 12189 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z" + }, + { + "type": "anime", + "mal_id": 35507, + "url": "https://myanimelist.net/anime/35507/Youkoso_Jitsuryoku_Shijou_Shugi_no_Kyoushitsu_e", + "rank": 1124, + "popularity": 101, + "score": 7.83, + "members": 1469427, + "year": 2017, + "default_title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "english_title": "Classroom of the Elite", + "cjk_title": "ようこそ実力至上主義の教室へ", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "ようこそ実力至上主義の教室へ" + ], + "latin_titles": [ + "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "Welcome to the Classroom of the Elite", + "You-jitsu", + "You-zitsu", + "Classroom of the Elite", + "Classroom of the Elite", + "Classroom of the Elite", + "Classroom of the Elite" + ], + "titles": [ + { + "type": "Default", + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e" + }, + { + "type": "Synonym", + "title": "Welcome to the Classroom of the Elite" + }, + { + "type": "Synonym", + "title": "You-jitsu" + }, + { + "type": "Synonym", + "title": "You-zitsu" + }, + { + "type": "Japanese", + "title": "ようこそ実力至上主義の教室へ" + }, + { + "type": "English", + "title": "Classroom of the Elite" + }, + { + "type": "German", + "title": "Classroom of the Elite" + }, + { + "type": "Spanish", + "title": "Classroom of the Elite" + }, + { + "type": "French", + "title": "Classroom of the Elite" + } + ], + "aliases": [ + "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "Classroom of the Elite", + "ようこそ実力至上主義の教室へ", + "Welcome to the Classroom of the Elite", + "You-jitsu", + "You-zitsu" + ], + "ids": { + "mal": 35507, + "jikan": 35507 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:08Z" + }, + { + "type": "anime", + "mal_id": 14741, + "url": "https://myanimelist.net/anime/14741/Chuunibyou_demo_Koi_ga_Shitai", + "rank": 1460, + "popularity": 102, + "score": 7.7, + "members": 1466153, + "year": 2012, + "default_title": "Chuunibyou demo Koi ga Shitai!", + "english_title": "Love, Chunibyo & Other Delusions!", + "cjk_title": "中二病でも恋がしたい!", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "中二病でも恋がしたい!" + ], + "latin_titles": [ + "Chuunibyou demo Koi ga Shitai!", + "Chu-2 Byo demo Koi ga Shitai!", + "Regardless of My Adolescent Delusions of Grandeur", + "I Want a Date!", + "Love, Chunibyo & Other Delusions!", + "Love, Chunibyo & Other Delusions!", + "Love, Chunibyo & Other Delusions", + "Love, Chunibyo & Other Delusions!" + ], + "titles": [ + { + "type": "Default", + "title": "Chuunibyou demo Koi ga Shitai!" + }, + { + "type": "Synonym", + "title": "Chu-2 Byo demo Koi ga Shitai!" + }, + { + "type": "Synonym", + "title": "Regardless of My Adolescent Delusions of Grandeur" + }, + { + "type": "Synonym", + "title": "I Want a Date!" + }, + { + "type": "Japanese", + "title": "中二病でも恋がしたい!" + }, + { + "type": "English", + "title": "Love, Chunibyo & Other Delusions!" + }, + { + "type": "German", + "title": "Love, Chunibyo & Other Delusions!" + }, + { + "type": "Spanish", + "title": "Love, Chunibyo & Other Delusions" + }, + { + "type": "French", + "title": "Love, Chunibyo & Other Delusions!" + } + ], + "aliases": [ + "Chuunibyou demo Koi ga Shitai!", + "Love, Chunibyo & Other Delusions!", + "中二病でも恋がしたい!", + "Chu-2 Byo demo Koi ga Shitai!", + "Regardless of My Adolescent Delusions of Grandeur", + "I Want a Date!", + "Love, Chunibyo & Other Delusions" + ], + "ids": { + "mal": 14741, + "jikan": 14741 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:08Z" + }, + { + "type": "anime", + "mal_id": 26243, + "url": "https://myanimelist.net/anime/26243/Owari_no_Seraph", + "rank": 2331, + "popularity": 103, + "score": 7.49, + "members": 1455550, + "year": 2015, + "default_title": "Owari no Seraph", + "english_title": "Seraph of the End: Vampire Reign", + "cjk_title": "終わりのセラフ", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "終わりのセラフ" + ], + "latin_titles": [ + "Owari no Seraph", + "Seraph of the End", + "Seraph of the End: Vampire Reign", + "Seraph of the End: Vampire Reign", + "Seraph of the End: El Reino de los Vampiros", + "Seraph of the End: Vampire Reign" + ], + "titles": [ + { + "type": "Default", + "title": "Owari no Seraph" + }, + { + "type": "Synonym", + "title": "Seraph of the End" + }, + { + "type": "Japanese", + "title": "終わりのセラフ" + }, + { + "type": "English", + "title": "Seraph of the End: Vampire Reign" + }, + { + "type": "German", + "title": "Seraph of the End: Vampire Reign" + }, + { + "type": "Spanish", + "title": "Seraph of the End: El Reino de los Vampiros" + }, + { + "type": "French", + "title": "Seraph of the End: Vampire Reign" + } + ], + "aliases": [ + "Owari no Seraph", + "Seraph of the End: Vampire Reign", + "終わりのセラフ", + "Seraph of the End", + "Seraph of the End: El Reino de los Vampiros" + ], + "ids": { + "mal": 26243, + "jikan": 26243 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:08Z" + }, + { + "type": "anime", + "mal_id": 52991, + "url": "https://myanimelist.net/anime/52991/Sousou_no_Frieren", + "rank": 1, + "popularity": 104, + "score": 9.27, + "members": 1441117, + "year": 2023, + "default_title": "Sousou no Frieren", + "english_title": "Frieren: Beyond Journey's End", + "cjk_title": "葬送のフリーレン", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "葬送のフリーレン" + ], + "latin_titles": [ + "Sousou no Frieren", + "Frieren at the Funeral", + "Frieren The Slayer", + "Frieren: Beyond Journey's End" + ], + "titles": [ + { + "type": "Default", + "title": "Sousou no Frieren" + }, + { + "type": "Synonym", + "title": "Frieren at the Funeral" + }, + { + "type": "Synonym", + "title": "Frieren The Slayer" + }, + { + "type": "Japanese", + "title": "葬送のフリーレン" + }, + { + "type": "English", + "title": "Frieren: Beyond Journey's End" + } + ], + "aliases": [ + "Sousou no Frieren", + "Frieren: Beyond Journey's End", + "葬送のフリーレン", + "Frieren at the Funeral", + "Frieren The Slayer" + ], + "ids": { + "mal": 52991, + "jikan": 52991 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:08Z" + } + ] +} diff --git a/tools/search_eval/samples/mal_multilingual_anime100_enriched.json b/tools/search_eval/samples/mal_multilingual_anime100_enriched.json new file mode 100644 index 0000000..52ba9e9 --- /dev/null +++ b/tools/search_eval/samples/mal_multilingual_anime100_enriched.json @@ -0,0 +1,16620 @@ +{ + "schema": "animedex.search_eval.mal_multilingual_anime.v1", + "description": "Top-popularity MAL anime samples with at least one CJK title and at least one Latin/English title, collected via Jikan.", + "selection": { + "source_endpoint": "https://api.jikan.moe/v4/top/anime?filter=bypopularity", + "minimum_count": 100, + "required_cjk_title": "one or more of Japanese kana, Han characters, or Korean Hangul", + "required_latin_title": true, + "complexity_filter": "at least three recorded complexity reasons", + "pages_scanned": 5, + "proxy_used": true + }, + "coverage": { + "japanese_kana": 92, + "han": 63, + "korean_hangul": 0, + "mixed_cjk_latin_title": 19 + }, + "count": 100, + "samples": [ + { + "type": "anime", + "mal_id": 16498, + "url": "https://myanimelist.net/anime/16498/Shingeki_no_Kyojin", + "rank": 127, + "popularity": 1, + "score": 8.57, + "members": 4364615, + "year": 2013, + "default_title": "Shingeki no Kyojin", + "english_title": "Attack on Titan", + "cjk_title": "進撃の巨人", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "進撃の巨人" + ], + "latin_titles": [ + "Shingeki no Kyojin", + "AoT", + "SnK", + "Attack on Titan", + "Attack on Titan", + "Ataque a los Titanes", + "L'Attaque des Titans" + ], + "titles": [ + { + "type": "Default", + "title": "Shingeki no Kyojin" + }, + { + "type": "Synonym", + "title": "AoT" + }, + { + "type": "Synonym", + "title": "SnK" + }, + { + "type": "Japanese", + "title": "進撃の巨人" + }, + { + "type": "English", + "title": "Attack on Titan" + }, + { + "type": "German", + "title": "Attack on Titan" + }, + { + "type": "Spanish", + "title": "Ataque a los Titanes" + }, + { + "type": "French", + "title": "L'Attaque des Titans" + } + ], + "aliases": [ + "Shingeki no Kyojin", + "Attack on Titan", + "進撃の巨人", + "AoT", + "SnK", + "Ataque a los Titanes", + "L'Attaque des Titans" + ], + "ids": { + "mal": 16498, + "jikan": 16498 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q22126305", + "Q47388290" + ], + "chinese_titles": [ + { + "title": "进击的巨人", + "source": "Wikidata zh-cn label", + "url": "https://www.wikidata.org/wiki/Q22126305", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "進擊的巨人", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q22126305", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "進擊的巨人", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q22126305", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "進擊的巨人 (動畫)", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E9%80%B2%E6%93%8A%E7%9A%84%E5%B7%A8%E4%BA%BA_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium" + }, + { + "title": "進擊的巨人", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q22126305", + "confidence": "medium" + }, + { + "title": "进击的巨人", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q22126305", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "진격의 거인 (애니메이션)", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EC%A7%84%EA%B2%A9%EC%9D%98_%EA%B1%B0%EC%9D%B8_%28%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98%29" + }, + { + "title": "진격의 거인", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q22126305" + }, + { + "title": "진격의 거인", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EC%A7%84%EA%B2%A9%EC%9D%98_%EA%B1%B0%EC%9D%B8", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 16498, + "chinese_title": "進擊的巨人 (動畫)", + "korean_title": "진격의 거인 (애니메이션)", + "chinese_titles_cn": [ + { + "title": "进击的巨人", + "source": "Wikidata zh-cn label", + "url": "https://www.wikidata.org/wiki/Q22126305", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "進擊的巨人", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q22126305", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "進擊的巨人", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q22126305", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "进击的巨人", + "chinese_title_hk_mo": "進擊的巨人", + "chinese_title_tw": "進擊的巨人" + }, + { + "type": "anime", + "mal_id": 1535, + "url": "https://myanimelist.net/anime/1535/Death_Note", + "rank": 99, + "popularity": 2, + "score": 8.62, + "members": 4302856, + "year": 2006, + "default_title": "Death Note", + "english_title": "Death Note", + "cjk_title": "デスノート", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "デスノート" + ], + "latin_titles": [ + "Death Note", + "DN", + "Death Note" + ], + "titles": [ + { + "type": "Default", + "title": "Death Note" + }, + { + "type": "Synonym", + "title": "DN" + }, + { + "type": "Japanese", + "title": "デスノート" + }, + { + "type": "English", + "title": "Death Note" + } + ], + "aliases": [ + "Death Note", + "デスノート", + "DN" + ], + "ids": { + "mal": 1535, + "jikan": 1535 + }, + "complexity_reasons": [ + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q718624" + ], + "chinese_titles": [ + { + "title": "死亡笔记", + "source": "Wikidata zh alias", + "url": "https://www.wikidata.org/wiki/Q718624", + "confidence": "medium", + "region": "zh_cn", + "note": "Generic simplified Chinese alias; no explicit Mainland formal title was found in the checked sources." + }, + { + "title": "死亡筆記", + "source": "Chinese Wikipedia formal Hong Kong title", + "url": "https://zh.wikipedia.org/wiki/%E6%AD%BB%E4%BA%A1%E7%AD%86%E8%A8%98", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "死亡筆記本", + "source": "Chinese Wikipedia formal Taiwan title", + "url": "https://zh.wikipedia.org/wiki/%E6%AD%BB%E4%BA%A1%E7%AD%86%E8%A8%98", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "死亡筆記 (動畫)", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E6%AD%BB%E4%BA%A1%E7%AD%86%E8%A8%98_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium" + }, + { + "title": "死亡筆記本", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q718624", + "confidence": "medium" + }, + { + "title": "死亡笔记", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q718624", + "confidence": "medium" + }, + { + "title": "死亡筆記之死神回憶", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q718624", + "confidence": "medium" + }, + { + "title": "死亡筆記", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q718624", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "데스노트 (애니메이션)", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EB%8D%B0%EC%8A%A4%EB%85%B8%ED%8A%B8_%28%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98%29" + }, + { + "title": "데스노트", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q718624" + }, + { + "title": "데스노트", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EB%8D%B0%EC%8A%A4%EB%85%B8%ED%8A%B8", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 1535, + "chinese_title": "死亡筆記 (動畫)", + "korean_title": "데스노트 (애니메이션)", + "chinese_titles_cn": [ + { + "title": "死亡笔记", + "source": "Wikidata zh alias", + "url": "https://www.wikidata.org/wiki/Q718624", + "confidence": "medium", + "region": "zh_cn", + "note": "Generic simplified Chinese alias; no explicit Mainland formal title was found in the checked sources." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "死亡筆記", + "source": "Chinese Wikipedia formal Hong Kong title", + "url": "https://zh.wikipedia.org/wiki/%E6%AD%BB%E4%BA%A1%E7%AD%86%E8%A8%98", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "死亡筆記本", + "source": "Chinese Wikipedia formal Taiwan title", + "url": "https://zh.wikipedia.org/wiki/%E6%AD%BB%E4%BA%A1%E7%AD%86%E8%A8%98", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "死亡笔记", + "chinese_title_hk_mo": "死亡筆記", + "chinese_title_tw": "死亡筆記本" + }, + { + "type": "anime", + "mal_id": 5114, + "url": "https://myanimelist.net/anime/5114/Fullmetal_Alchemist__Brotherhood", + "rank": 3, + "popularity": 3, + "score": 9.11, + "members": 3685534, + "year": 2009, + "default_title": "Fullmetal Alchemist: Brotherhood", + "english_title": "Fullmetal Alchemist: Brotherhood", + "cjk_title": "鋼の錬金術師 FULLMETAL ALCHEMIST", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "鋼の錬金術師 FULLMETAL ALCHEMIST" + ], + "latin_titles": [ + "Fullmetal Alchemist: Brotherhood", + "Hagane no Renkinjutsushi: Fullmetal Alchemist", + "Fullmetal Alchemist (2009)", + "FMA", + "FMAB", + "Fullmetal Alchemist: Brotherhood", + "Fullmetal Alchemist Brotherhood" + ], + "titles": [ + { + "type": "Default", + "title": "Fullmetal Alchemist: Brotherhood" + }, + { + "type": "Synonym", + "title": "Hagane no Renkinjutsushi: Fullmetal Alchemist" + }, + { + "type": "Synonym", + "title": "Fullmetal Alchemist (2009)" + }, + { + "type": "Synonym", + "title": "FMA" + }, + { + "type": "Synonym", + "title": "FMAB" + }, + { + "type": "Japanese", + "title": "鋼の錬金術師 FULLMETAL ALCHEMIST" + }, + { + "type": "English", + "title": "Fullmetal Alchemist: Brotherhood" + }, + { + "type": "French", + "title": "Fullmetal Alchemist Brotherhood" + } + ], + "aliases": [ + "Fullmetal Alchemist: Brotherhood", + "鋼の錬金術師 FULLMETAL ALCHEMIST", + "Hagane no Renkinjutsushi: Fullmetal Alchemist", + "Fullmetal Alchemist (2009)", + "FMA", + "FMAB", + "Fullmetal Alchemist Brotherhood" + ], + "ids": { + "mal": 5114, + "jikan": 5114 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q437808" + ], + "chinese_titles": [ + { + "title": "钢之炼金术师 FULLMETAL ALCHEMIST", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "钢之炼金术师 FULLMETAL ALCHEMIST", + "source": "AniList synonym", + "url": "https://anilist.co/anime/5114", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "鋼之鍊金術師 FULLMETAL ALCHEMIST", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q437808", + "confidence": "medium", + "region": "zh_hk_mo" + }, + { + "title": "鋼之鍊金術師FA", + "source": "Chinese Wikipedia formal title", + "url": "https://zh.wikipedia.org/wiki/%E9%8B%BC%E4%B9%8B%E9%8D%8A%E9%87%91%E8%A1%93%E5%B8%AB_FULLMETAL_ALCHEMIST", + "confidence": "medium", + "region": "zh_hk_mo" + }, + { + "title": "鋼之鍊金術師 FULLMETAL ALCHEMIST", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q437808", + "confidence": "medium", + "region": "zh_tw" + }, + { + "title": "鋼之鍊金術師FA", + "source": "Chinese Wikipedia formal title", + "url": "https://zh.wikipedia.org/wiki/%E9%8B%BC%E4%B9%8B%E9%8D%8A%E9%87%91%E8%A1%93%E5%B8%AB_FULLMETAL_ALCHEMIST", + "confidence": "medium", + "region": "zh_tw" + }, + { + "title": "鋼之鍊金術師 FULLMETAL ALCHEMIST", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E9%8B%BC%E4%B9%8B%E9%8D%8A%E9%87%91%E8%A1%93%E5%B8%AB_FULLMETAL_ALCHEMIST", + "confidence": "medium" + }, + { + "title": "鋼之鍊金術師FA", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q437808", + "confidence": "medium" + }, + { + "title": "钢之炼金术师FA", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q437808", + "confidence": "medium" + }, + { + "title": "钢之炼金术师 FULLMETAL ALCHEMIST", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "강철의 연금술사 BROTHERHOOD", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EA%B0%95%EC%B2%A0%EC%9D%98_%EC%97%B0%EA%B8%88%EC%88%A0%EC%82%AC_BROTHERHOOD" + }, + { + "title": "강철의 연금술사 BROTHERHOOD", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q437808", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 5114, + "chinese_title": "鋼之鍊金術師 FULLMETAL ALCHEMIST", + "korean_title": "강철의 연금술사 BROTHERHOOD", + "chinese_titles_cn": [ + { + "title": "钢之炼金术师 FULLMETAL ALCHEMIST", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "钢之炼金术师 FULLMETAL ALCHEMIST", + "source": "AniList synonym", + "url": "https://anilist.co/anime/5114", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "鋼之鍊金術師 FULLMETAL ALCHEMIST", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q437808", + "confidence": "medium", + "region": "zh_hk_mo" + }, + { + "title": "鋼之鍊金術師FA", + "source": "Chinese Wikipedia formal title", + "url": "https://zh.wikipedia.org/wiki/%E9%8B%BC%E4%B9%8B%E9%8D%8A%E9%87%91%E8%A1%93%E5%B8%AB_FULLMETAL_ALCHEMIST", + "confidence": "medium", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "鋼之鍊金術師 FULLMETAL ALCHEMIST", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q437808", + "confidence": "medium", + "region": "zh_tw" + }, + { + "title": "鋼之鍊金術師FA", + "source": "Chinese Wikipedia formal title", + "url": "https://zh.wikipedia.org/wiki/%E9%8B%BC%E4%B9%8B%E9%8D%8A%E9%87%91%E8%A1%93%E5%B8%AB_FULLMETAL_ALCHEMIST", + "confidence": "medium", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [ + "The checked sources did not clearly distinguish Hong Kong/Macau and Taiwan titles for this TV entry." + ], + "chinese_title_cn": "钢之炼金术师 FULLMETAL ALCHEMIST", + "chinese_title_hk_mo": "鋼之鍊金術師 FULLMETAL ALCHEMIST", + "chinese_title_tw": "鋼之鍊金術師 FULLMETAL ALCHEMIST" + }, + { + "type": "anime", + "mal_id": 30276, + "url": "https://myanimelist.net/anime/30276/One_Punch_Man", + "rank": 181, + "popularity": 4, + "score": 8.47, + "members": 3522453, + "year": 2015, + "default_title": "One Punch Man", + "english_title": "One-Punch Man", + "cjk_title": "ワンパンマン", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ワンパンマン" + ], + "latin_titles": [ + "One Punch Man", + "One Punch-Man", + "OPM", + "One-Punch Man" + ], + "titles": [ + { + "type": "Default", + "title": "One Punch Man" + }, + { + "type": "Synonym", + "title": "One Punch-Man" + }, + { + "type": "Synonym", + "title": "OPM" + }, + { + "type": "Japanese", + "title": "ワンパンマン" + }, + { + "type": "English", + "title": "One-Punch Man" + } + ], + "aliases": [ + "One Punch Man", + "One-Punch Man", + "ワンパンマン", + "One Punch-Man", + "OPM" + ], + "ids": { + "mal": 30276, + "jikan": 30276 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q105081756" + ], + "chinese_titles": [ + { + "title": "一拳超人", + "source": "Chinese Wikipedia official translation", + "url": "https://zh.wikipedia.org/wiki/%E4%B8%80%E6%8B%B3%E8%B6%85%E4%BA%BA", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "一拳超人", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q105081756", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "一拳超人", + "source": "Chinese Wikipedia official translation", + "url": "https://zh.wikipedia.org/wiki/%E4%B8%80%E6%8B%B3%E8%B6%85%E4%BA%BA", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "一拳超人", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q105081756", + "confidence": "medium" + } + ], + "anilist_id": 21087, + "chinese_title": "一拳超人", + "korean_title": "원펀맨", + "chinese_titles_cn": [ + { + "title": "一拳超人", + "source": "Chinese Wikipedia official translation", + "url": "https://zh.wikipedia.org/wiki/%E4%B8%80%E6%8B%B3%E8%B6%85%E4%BA%BA", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "一拳超人", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q105081756", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "一拳超人", + "source": "Chinese Wikipedia official translation", + "url": "https://zh.wikipedia.org/wiki/%E4%B8%80%E6%8B%B3%E8%B6%85%E4%BA%BA", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "원펀맨", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EC%9B%90%ED%8E%80%EB%A7%A8", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "一拳超人", + "chinese_title_hk_mo": "一拳超人", + "chinese_title_tw": "一拳超人" + }, + { + "type": "anime", + "mal_id": 38000, + "url": "https://myanimelist.net/anime/38000/Kimetsu_no_Yaiba", + "rank": 232, + "popularity": 5, + "score": 8.4, + "members": 3452049, + "year": 2019, + "default_title": "Kimetsu no Yaiba", + "english_title": "Demon Slayer: Kimetsu no Yaiba", + "cjk_title": "鬼滅の刃", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "鬼滅の刃" + ], + "latin_titles": [ + "Kimetsu no Yaiba", + "Blade of Demon Destruction", + "Demon Slayer: Kimetsu no Yaiba", + "Demon Slayer", + "Guardianes De La Noche: Kimetsu no Yaiba", + "Demon Slayer" + ], + "titles": [ + { + "type": "Default", + "title": "Kimetsu no Yaiba" + }, + { + "type": "Synonym", + "title": "Blade of Demon Destruction" + }, + { + "type": "Japanese", + "title": "鬼滅の刃" + }, + { + "type": "English", + "title": "Demon Slayer: Kimetsu no Yaiba" + }, + { + "type": "German", + "title": "Demon Slayer" + }, + { + "type": "Spanish", + "title": "Guardianes De La Noche: Kimetsu no Yaiba" + }, + { + "type": "French", + "title": "Demon Slayer" + } + ], + "aliases": [ + "Kimetsu no Yaiba", + "Demon Slayer: Kimetsu no Yaiba", + "鬼滅の刃", + "Blade of Demon Destruction", + "Demon Slayer", + "Guardianes De La Noche: Kimetsu no Yaiba" + ], + "ids": { + "mal": 38000, + "jikan": 38000 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q105847391" + ], + "chinese_titles": [ + { + "title": "鬼灭之刃", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "鬼灭之刃", + "source": "Wikidata zh-cn label", + "url": "https://www.wikidata.org/wiki/Q24862683", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "鬼滅之刃", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q24862683", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "鬼滅之刃", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q24862683", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "鬼滅之刃 竈門炭治郎 立志篇", + "source": "Wikidata zh label for MAL-matched season entry", + "url": "https://www.wikidata.org/wiki/Q105847391", + "confidence": "medium", + "region": "zh_tw" + }, + { + "title": "鬼滅之刃 竈門炭治郎 立志篇", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E9%AC%BC%E6%BB%85%E4%B9%8B%E5%88%83_%E7%AB%88%E9%96%80%E7%82%AD%E6%B2%BB%E9%83%8E_%E7%AB%8B%E5%BF%97%E7%AF%87", + "confidence": "medium" + }, + { + "title": "鬼灭之刃", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "anilist_id": 101922, + "korean_titles": [ + { + "title": "귀멸의 칼날", + "language": "ko", + "source": "anilist_synonym", + "source_url": "https://anilist.co/search/anime" + }, + { + "title": "귀멸의 칼날", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EA%B7%80%EB%A9%B8%EC%9D%98_%EC%B9%BC%EB%82%A0", + "confidence": "high", + "region": "ko" + } + ], + "chinese_title": "鬼滅之刃 竈門炭治郎 立志篇", + "korean_title": "귀멸의 칼날", + "chinese_titles_cn": [ + { + "title": "鬼灭之刃", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "鬼灭之刃", + "source": "Wikidata zh-cn label", + "url": "https://www.wikidata.org/wiki/Q24862683", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "鬼滅之刃", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q24862683", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "鬼滅之刃", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q24862683", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "鬼滅之刃 竈門炭治郎 立志篇", + "source": "Wikidata zh label for MAL-matched season entry", + "url": "https://www.wikidata.org/wiki/Q105847391", + "confidence": "medium", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "鬼灭之刃", + "chinese_title_hk_mo": "鬼滅之刃", + "chinese_title_tw": "鬼滅之刃" + }, + { + "type": "anime", + "mal_id": 31964, + "url": "https://myanimelist.net/anime/31964/Boku_no_Hero_Academia", + "rank": 1105, + "popularity": 6, + "score": 7.83, + "members": 3308507, + "year": 2016, + "default_title": "Boku no Hero Academia", + "english_title": "My Hero Academia", + "cjk_title": "僕のヒーローアカデミア", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "僕のヒーローアカデミア" + ], + "latin_titles": [ + "Boku no Hero Academia", + "My Hero Academia", + "My Hero Academia", + "My Hero Academia", + "My Hero Academia" + ], + "titles": [ + { + "type": "Default", + "title": "Boku no Hero Academia" + }, + { + "type": "Japanese", + "title": "僕のヒーローアカデミア" + }, + { + "type": "English", + "title": "My Hero Academia" + }, + { + "type": "German", + "title": "My Hero Academia" + }, + { + "type": "Spanish", + "title": "My Hero Academia" + }, + { + "type": "French", + "title": "My Hero Academia" + } + ], + "aliases": [ + "Boku no Hero Academia", + "My Hero Academia", + "僕のヒーローアカデミア" + ], + "ids": { + "mal": 31964, + "jikan": 31964 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q56276221" + ], + "anilist_id": 21459, + "korean_titles": [ + { + "title": "나의 히어로 아카데미아 1기", + "language": "ko", + "source": "anilist_synonym", + "source_url": "https://anilist.co/search/anime" + }, + { + "title": "나히아 1기", + "language": "ko", + "source": "anilist_synonym", + "source_url": "https://anilist.co/search/anime" + }, + { + "title": "나의 히어로 아카데미아", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q18047903", + "confidence": "high", + "region": "ko" + }, + { + "title": "나의 히어로 아카데미아 1기", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21459", + "confidence": "medium", + "region": "ko" + } + ], + "chinese_titles": [ + { + "title": "我的英雄学院", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学园", + "source": "Chinese Wikipedia formal Mainland China title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "我的英雄学院", + "source": "Chinese Wikipedia formal Hong Kong/Macau title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "我的英雄学院", + "source": "Chinese Wikipedia formal Taiwan title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "我的英雄学院", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "我的英雄学院", + "korean_title": "나의 히어로 아카데미아 1기", + "chinese_titles_cn": [ + { + "title": "我的英雄学院", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学园", + "source": "Chinese Wikipedia formal Mainland China title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "我的英雄学院", + "source": "Chinese Wikipedia formal Hong Kong/Macau title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "我的英雄学院", + "source": "Chinese Wikipedia formal Taiwan title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "我的英雄学院", + "chinese_title_hk_mo": "我的英雄学院", + "chinese_title_tw": "我的英雄学院" + }, + { + "type": "anime", + "mal_id": 11757, + "url": "https://myanimelist.net/anime/11757/Sword_Art_Online", + "rank": 3832, + "popularity": 7, + "score": 7.23, + "members": 3302369, + "year": 2012, + "default_title": "Sword Art Online", + "english_title": "Sword Art Online", + "cjk_title": "ソードアート・オンライン", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ソードアート・オンライン" + ], + "latin_titles": [ + "Sword Art Online", + "S.A.O", + "SAO", + "Sword Art Online" + ], + "titles": [ + { + "type": "Default", + "title": "Sword Art Online" + }, + { + "type": "Synonym", + "title": "S.A.O" + }, + { + "type": "Synonym", + "title": "SAO" + }, + { + "type": "Japanese", + "title": "ソードアート・オンライン" + }, + { + "type": "English", + "title": "Sword Art Online" + } + ], + "aliases": [ + "Sword Art Online", + "ソードアート・オンライン", + "S.A.O", + "SAO" + ], + "ids": { + "mal": 11757, + "jikan": 11757 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q132174429" + ], + "anilist_id": 11757, + "chinese_titles": [ + { + "title": "刀剑神域", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "刀剑神域", + "source": "Chinese Wikipedia Mainland China publication table", + "url": "https://zh.wikipedia.org/wiki/%E5%88%80%E5%8A%8D%E7%A5%9E%E5%9F%9F", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "刀劍神域", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q27863", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "刀劍神域", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q27863", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "刀剑神域", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "刀剑神域", + "korean_title": "소드 아트 온라인", + "chinese_titles_cn": [ + { + "title": "刀剑神域", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "刀剑神域", + "source": "Chinese Wikipedia Mainland China publication table", + "url": "https://zh.wikipedia.org/wiki/%E5%88%80%E5%8A%8D%E7%A5%9E%E5%9F%9F", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "刀劍神域", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q27863", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "刀劍神域", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q27863", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "소드 아트 온라인", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q27863", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "刀剑神域", + "chinese_title_hk_mo": "刀劍神域", + "chinese_title_tw": "刀劍神域" + }, + { + "type": "anime", + "mal_id": 11061, + "url": "https://myanimelist.net/anime/11061/Hunter_x_Hunter_2011", + "rank": 9, + "popularity": 8, + "score": 9.03, + "members": 3191289, + "year": 2011, + "default_title": "Hunter x Hunter (2011)", + "english_title": "Hunter x Hunter", + "cjk_title": "HUNTER×HUNTER(ハンター×ハンター)", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "HUNTER×HUNTER(ハンター×ハンター)" + ], + "latin_titles": [ + "Hunter x Hunter (2011)", + "HxH (2011)", + "Hunter x Hunter", + "Hunter x Hunter", + "Hunter x Hunter", + "Hunter X Hunter" + ], + "titles": [ + { + "type": "Default", + "title": "Hunter x Hunter (2011)" + }, + { + "type": "Synonym", + "title": "HxH (2011)" + }, + { + "type": "Japanese", + "title": "HUNTER×HUNTER(ハンター×ハンター)" + }, + { + "type": "English", + "title": "Hunter x Hunter" + }, + { + "type": "German", + "title": "Hunter x Hunter" + }, + { + "type": "Spanish", + "title": "Hunter x Hunter" + }, + { + "type": "French", + "title": "Hunter X Hunter" + } + ], + "aliases": [ + "Hunter x Hunter (2011)", + "Hunter x Hunter", + "HUNTER×HUNTER(ハンター×ハンター)", + "HxH (2011)", + "Hunter X Hunter" + ], + "ids": { + "mal": 11061, + "jikan": 11061 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q70209136" + ], + "chinese_titles": [ + { + "title": "全职猎人", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "HUNTER×HUNTER 獵人", + "source": "Chinese Wikipedia formal Mainland title", + "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "HUNTER×HUNTER", + "source": "Chinese Wikipedia formal Hong Kong title", + "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "全職獵人", + "source": "Chinese Wikipedia Hong Kong TV/common title", + "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "HUNTER×HUNTER 獵人", + "source": "Chinese Wikipedia formal Taiwan title", + "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "HUNTER×HUNTER (2011年動畫)", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER_%282011%E5%B9%B4%E5%8B%95%E7%95%AB%29", + "confidence": "medium" + }, + { + "title": "HUNTER×HUNTER", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q70209136", + "confidence": "medium" + }, + { + "title": "獵人", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q70209136", + "confidence": "medium" + }, + { + "title": "全职猎人", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "헌터 × 헌터 (2011년 애니메이션)", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%ED%97%8C%ED%84%B0_%C3%97_%ED%97%8C%ED%84%B0_%282011%EB%85%84_%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98%29" + }, + { + "title": "헌터 × 헌터 (2011년 애니메이션)", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q70209136", + "confidence": "high", + "region": "ko" + }, + { + "title": "헌터 × 헌터", + "source": "Wikidata ko label for base work", + "url": "https://www.wikidata.org/wiki/Q84926", + "confidence": "medium", + "region": "ko" + } + ], + "anilist_id": 11061, + "chinese_title": "HUNTER×HUNTER (2011年動畫)", + "korean_title": "헌터 × 헌터 (2011년 애니메이션)", + "chinese_titles_cn": [ + { + "title": "全职猎人", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "HUNTER×HUNTER 獵人", + "source": "Chinese Wikipedia formal Mainland title", + "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "HUNTER×HUNTER", + "source": "Chinese Wikipedia formal Hong Kong title", + "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "全職獵人", + "source": "Chinese Wikipedia Hong Kong TV/common title", + "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "HUNTER×HUNTER 獵人", + "source": "Chinese Wikipedia formal Taiwan title", + "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "全职猎人", + "chinese_title_hk_mo": "HUNTER×HUNTER", + "chinese_title_tw": "HUNTER×HUNTER 獵人" + }, + { + "type": "anime", + "mal_id": 20, + "url": "https://myanimelist.net/anime/20/Naruto", + "rank": 728, + "popularity": 9, + "score": 8.02, + "members": 3120151, + "year": 2002, + "default_title": "Naruto", + "english_title": "Naruto", + "cjk_title": "ナルト", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ナルト" + ], + "latin_titles": [ + "Naruto", + "NARUTO", + "Naruto" + ], + "titles": [ + { + "type": "Default", + "title": "Naruto" + }, + { + "type": "Synonym", + "title": "NARUTO" + }, + { + "type": "Japanese", + "title": "ナルト" + }, + { + "type": "English", + "title": "Naruto" + } + ], + "aliases": [ + "Naruto", + "ナルト", + "NARUTO" + ], + "ids": { + "mal": 20, + "jikan": 20 + }, + "complexity_reasons": [ + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q25929253" + ], + "chinese_titles": [ + { + "title": "火影忍者", + "source": "Chinese Wikipedia formal Mainland China title", + "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "火影忍者", + "source": "Chinese Wikipedia formal Hong Kong title", + "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "狐忍", + "source": "Chinese Wikipedia Hong Kong alternate publisher title", + "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85", + "confidence": "medium", + "region": "zh_hk_mo" + }, + { + "title": "火影忍者", + "source": "Chinese Wikipedia formal Taiwan title", + "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "火影忍者 (動畫)", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium" + }, + { + "title": "火影忍者", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q25929253", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "나루토 (애니메이션)", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EB%82%98%EB%A3%A8%ED%86%A0_%28%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98%29" + }, + { + "title": "나루토", + "source": "Wikidata ko label for base work", + "url": "https://www.wikidata.org/wiki/Q9312", + "confidence": "high", + "region": "ko" + }, + { + "title": "나루토 (애니메이션)", + "source": "Wikidata ko label for MAL-matched anime entry", + "url": "https://www.wikidata.org/wiki/Q25929253", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 20, + "chinese_title": "火影忍者 (動畫)", + "korean_title": "나루토 (애니메이션)", + "chinese_titles_cn": [ + { + "title": "火影忍者", + "source": "Chinese Wikipedia formal Mainland China title", + "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "火影忍者", + "source": "Chinese Wikipedia formal Hong Kong title", + "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "狐忍", + "source": "Chinese Wikipedia Hong Kong alternate publisher title", + "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85", + "confidence": "medium", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "火影忍者", + "source": "Chinese Wikipedia formal Taiwan title", + "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "火影忍者", + "chinese_title_hk_mo": "火影忍者", + "chinese_title_tw": "火影忍者" + }, + { + "type": "anime", + "mal_id": 22319, + "url": "https://myanimelist.net/anime/22319/Tokyo_Ghoul", + "rank": 1230, + "popularity": 10, + "score": 7.79, + "members": 3058751, + "year": 2014, + "default_title": "Tokyo Ghoul", + "english_title": "Tokyo Ghoul", + "cjk_title": "東京喰種-トーキョーグール-", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "東京喰種-トーキョーグール-" + ], + "latin_titles": [ + "Tokyo Ghoul", + "Tokyo Kushu", + "Toukyou Kushu", + "Toukyou Ghoul", + "Tokyo Ghoul" + ], + "titles": [ + { + "type": "Default", + "title": "Tokyo Ghoul" + }, + { + "type": "Synonym", + "title": "Tokyo Kushu" + }, + { + "type": "Synonym", + "title": "Toukyou Kushu" + }, + { + "type": "Synonym", + "title": "Toukyou Ghoul" + }, + { + "type": "Japanese", + "title": "東京喰種-トーキョーグール-" + }, + { + "type": "English", + "title": "Tokyo Ghoul" + } + ], + "aliases": [ + "Tokyo Ghoul", + "東京喰種-トーキョーグール-", + "Tokyo Kushu", + "Toukyou Kushu", + "Toukyou Ghoul" + ], + "ids": { + "mal": 22319, + "jikan": 22319 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q40239998" + ], + "chinese_titles": [ + { + "title": "东京食种", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "东京食尸鬼", + "source": "Chinese Wikipedia formal Mainland China title", + "url": "https://zh.wikipedia.org/wiki/%E6%9D%B1%E4%BA%AC%E5%96%B0%E7%A8%AE", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "東京喰種", + "source": "Chinese Wikipedia formal Hong Kong/Macau title", + "url": "https://zh.wikipedia.org/wiki/%E6%9D%B1%E4%BA%AC%E5%96%B0%E7%A8%AE", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "東京喰種", + "source": "Chinese Wikipedia formal Taiwan title", + "url": "https://zh.wikipedia.org/wiki/%E6%9D%B1%E4%BA%AC%E5%96%B0%E7%A8%AE", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "東京喰種 (動畫)", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E6%9D%B1%E4%BA%AC%E5%96%B0%E7%A8%AE_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium" + }, + { + "title": "東京喰種", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q40239998", + "confidence": "medium" + }, + { + "title": "东京食种", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "도쿄 구울", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q40239998" + }, + { + "title": "도쿄 구울", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q40239998", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 20605, + "chinese_title": "東京喰種 (動畫)", + "korean_title": "도쿄 구울", + "chinese_titles_cn": [ + { + "title": "东京食种", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "东京食尸鬼", + "source": "Chinese Wikipedia formal Mainland China title", + "url": "https://zh.wikipedia.org/wiki/%E6%9D%B1%E4%BA%AC%E5%96%B0%E7%A8%AE", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "東京喰種", + "source": "Chinese Wikipedia formal Hong Kong/Macau title", + "url": "https://zh.wikipedia.org/wiki/%E6%9D%B1%E4%BA%AC%E5%96%B0%E7%A8%AE", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "東京喰種", + "source": "Chinese Wikipedia formal Taiwan title", + "url": "https://zh.wikipedia.org/wiki/%E6%9D%B1%E4%BA%AC%E5%96%B0%E7%A8%AE", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "东京食种", + "chinese_title_hk_mo": "東京喰種", + "chinese_title_tw": "東京喰種" + }, + { + "type": "anime", + "mal_id": 40748, + "url": "https://myanimelist.net/anime/40748/Jujutsu_Kaisen", + "rank": 164, + "popularity": 11, + "score": 8.5, + "members": 3040258, + "year": 2020, + "default_title": "Jujutsu Kaisen", + "english_title": "Jujutsu Kaisen", + "cjk_title": "呪術廻戦", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "呪術廻戦" + ], + "latin_titles": [ + "Jujutsu Kaisen", + "Sorcery Fight", + "JJK", + "Jujutsu Kaisen", + "Jujutsu Kaisen", + "Jujutsu Kaisen", + "Jujutsu Kaisen" + ], + "titles": [ + { + "type": "Default", + "title": "Jujutsu Kaisen" + }, + { + "type": "Synonym", + "title": "Sorcery Fight" + }, + { + "type": "Synonym", + "title": "JJK" + }, + { + "type": "Japanese", + "title": "呪術廻戦" + }, + { + "type": "English", + "title": "Jujutsu Kaisen" + }, + { + "type": "German", + "title": "Jujutsu Kaisen" + }, + { + "type": "Spanish", + "title": "Jujutsu Kaisen" + }, + { + "type": "French", + "title": "Jujutsu Kaisen" + } + ], + "aliases": [ + "Jujutsu Kaisen", + "呪術廻戦", + "Sorcery Fight", + "JJK" + ], + "ids": { + "mal": 40748, + "jikan": 40748 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q110897082" + ], + "chinese_titles": [ + { + "title": "咒术回战", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "咒术回战", + "source": "Chinese Wikipedia formal Mainland China title", + "url": "https://zh.wikipedia.org/wiki/%E5%92%92%E8%A1%93%E8%BF%B4%E6%88%B0", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "咒術迴戰", + "source": "Chinese Wikipedia formal Hong Kong/Macau title", + "url": "https://zh.wikipedia.org/wiki/%E5%92%92%E8%A1%93%E8%BF%B4%E6%88%B0", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "咒術迴戰", + "source": "Chinese Wikipedia formal Taiwan title", + "url": "https://zh.wikipedia.org/wiki/%E5%92%92%E8%A1%93%E8%BF%B4%E6%88%B0", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "咒術迴戰", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q110897082", + "confidence": "medium" + }, + { + "title": "咒术回战", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "anilist_id": 113415, + "korean_titles": [ + { + "title": "주술회전", + "language": "ko", + "source": "anilist_synonym", + "source_url": "https://anilist.co/search/anime" + }, + { + "title": "주술회전", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q55522899", + "confidence": "high", + "region": "ko" + } + ], + "chinese_title": "咒術迴戰", + "korean_title": "주술회전", + "chinese_titles_cn": [ + { + "title": "咒术回战", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "咒术回战", + "source": "Chinese Wikipedia formal Mainland China title", + "url": "https://zh.wikipedia.org/wiki/%E5%92%92%E8%A1%93%E8%BF%B4%E6%88%B0", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "咒術迴戰", + "source": "Chinese Wikipedia formal Hong Kong/Macau title", + "url": "https://zh.wikipedia.org/wiki/%E5%92%92%E8%A1%93%E8%BF%B4%E6%88%B0", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "咒術迴戰", + "source": "Chinese Wikipedia formal Taiwan title", + "url": "https://zh.wikipedia.org/wiki/%E5%92%92%E8%A1%93%E8%BF%B4%E6%88%B0", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "咒术回战", + "chinese_title_hk_mo": "咒術迴戰", + "chinese_title_tw": "咒術迴戰" + }, + { + "type": "anime", + "mal_id": 32281, + "url": "https://myanimelist.net/anime/32281/Kimi_no_Na_wa", + "rank": 37, + "popularity": 12, + "score": 8.82, + "members": 3029910, + "year": null, + "default_title": "Kimi no Na wa.", + "english_title": "Your Name.", + "cjk_title": "君の名は。", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "君の名は。" + ], + "latin_titles": [ + "Kimi no Na wa.", + "Your Name.", + "Your Name.", + "Your Name.", + "Your Name." + ], + "titles": [ + { + "type": "Default", + "title": "Kimi no Na wa." + }, + { + "type": "Japanese", + "title": "君の名は。" + }, + { + "type": "English", + "title": "Your Name." + }, + { + "type": "German", + "title": "Your Name." + }, + { + "type": "Spanish", + "title": "Your Name." + }, + { + "type": "French", + "title": "Your Name." + } + ], + "aliases": [ + "Kimi no Na wa.", + "Your Name.", + "君の名は。" + ], + "ids": { + "mal": 32281, + "jikan": 32281 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q21697406" + ], + "chinese_titles": [ + { + "title": "你的名字。", + "source": "Chinese Wikipedia Mainland China title", + "url": "https://zh.wikipedia.org/wiki/%E4%BD%A0%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "你的名字。", + "source": "Chinese Wikipedia Hong Kong/Macau title", + "url": "https://zh.wikipedia.org/wiki/%E4%BD%A0%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "你的名字。", + "source": "Chinese Wikipedia Taiwan distributor title", + "url": "https://zh.wikipedia.org/wiki/%E4%BD%A0%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "你的名字", + "source": "Chinese Wikipedia Taiwan alternate distributor title", + "url": "https://zh.wikipedia.org/wiki/%E4%BD%A0%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", + "confidence": "medium", + "region": "zh_tw" + }, + { + "title": "你的名字。", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E4%BD%A0%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", + "confidence": "medium" + }, + { + "title": "你的名字", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q21697406", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "너의 이름은.", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EB%84%88%EC%9D%98_%EC%9D%B4%EB%A6%84%EC%9D%80." + }, + { + "title": "너의 이름은", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q21697406" + }, + { + "title": "너의 이름은.", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q21697406", + "confidence": "high", + "region": "ko" + }, + { + "title": "너의 이름은", + "source": "Wikidata ko alias", + "url": "https://www.wikidata.org/wiki/Q21697406", + "confidence": "medium", + "region": "ko" + } + ], + "anilist_id": 21519, + "chinese_title": "你的名字。", + "korean_title": "너의 이름은.", + "chinese_titles_cn": [ + { + "title": "你的名字。", + "source": "Chinese Wikipedia Mainland China title", + "url": "https://zh.wikipedia.org/wiki/%E4%BD%A0%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "你的名字。", + "source": "Chinese Wikipedia Hong Kong/Macau title", + "url": "https://zh.wikipedia.org/wiki/%E4%BD%A0%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "你的名字。", + "source": "Chinese Wikipedia Taiwan distributor title", + "url": "https://zh.wikipedia.org/wiki/%E4%BD%A0%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "你的名字", + "source": "Chinese Wikipedia Taiwan alternate distributor title", + "url": "https://zh.wikipedia.org/wiki/%E4%BD%A0%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", + "confidence": "medium", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "你的名字。", + "chinese_title_hk_mo": "你的名字。", + "chinese_title_tw": "你的名字。" + }, + { + "type": "anime", + "mal_id": 25777, + "url": "https://myanimelist.net/anime/25777/Shingeki_no_Kyojin_Season_2", + "rank": 146, + "popularity": 13, + "score": 8.54, + "members": 3022645, + "year": 2017, + "default_title": "Shingeki no Kyojin Season 2", + "english_title": "Attack on Titan Season 2", + "cjk_title": "進撃の巨人 Season2", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "進撃の巨人 Season2" + ], + "latin_titles": [ + "Shingeki no Kyojin Season 2", + "Attack on Titan Season 2", + "Attack on Titan – 2. Staffel", + "Ataque a los Titanes Temporada 2", + "L'Attaque des Titans Saison 2" + ], + "titles": [ + { + "type": "Default", + "title": "Shingeki no Kyojin Season 2" + }, + { + "type": "Japanese", + "title": "進撃の巨人 Season2" + }, + { + "type": "English", + "title": "Attack on Titan Season 2" + }, + { + "type": "German", + "title": "Attack on Titan – 2. Staffel" + }, + { + "type": "Spanish", + "title": "Ataque a los Titanes Temporada 2" + }, + { + "type": "French", + "title": "L'Attaque des Titans Saison 2" + } + ], + "aliases": [ + "Shingeki no Kyojin Season 2", + "Attack on Titan Season 2", + "進撃の巨人 Season2", + "Attack on Titan – 2. Staffel", + "Ataque a los Titanes Temporada 2", + "L'Attaque des Titans Saison 2" + ], + "ids": { + "mal": 25777, + "jikan": 25777 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q47388300" + ], + "anilist_id": 20958, + "chinese_title": null, + "korean_title": "진격의 거인 2기", + "chinese_titles_cn": [ + { + "title": "进击的巨人 第二季", + "source": "Bilibili Mainland China media page", + "url": "https://www.bilibili.com/bangumi/media/md28230020", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "進擊的巨人 第二季", + "source": "Bilibili Taiwan media page", + "url": "https://www.bilibili.com/bangumi/media/md5970/", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "진격의 거인 2기", + "source": "Watcha", + "url": "https://watcha.com/ko-KR/contents/tlYym4l", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau season-specific Chinese title was found." + ], + "chinese_titles": [ + { + "title": "进击的巨人 第二季", + "source": "Bilibili Mainland China media page", + "url": "https://www.bilibili.com/bangumi/media/md28230020", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "進擊的巨人 第二季", + "source": "Bilibili Taiwan media page", + "url": "https://www.bilibili.com/bangumi/media/md5970/", + "confidence": "high", + "region": "zh_tw" + } + ], + "chinese_title_cn": "进击的巨人 第二季", + "chinese_title_hk_mo": null, + "chinese_title_tw": "進擊的巨人 第二季" + }, + { + "type": "anime", + "mal_id": 1735, + "url": "https://myanimelist.net/anime/1735/Naruto__Shippuuden", + "rank": 336, + "popularity": 15, + "score": 8.29, + "members": 2750945, + "year": 2007, + "default_title": "Naruto: Shippuuden", + "english_title": "Naruto Shippuden", + "cjk_title": "-ナルト- 疾風伝", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "-ナルト- 疾風伝" + ], + "latin_titles": [ + "Naruto: Shippuuden", + "Naruto Hurricane Chronicles", + "Naruto Shippuden", + "Naruto Shippuden", + "Naruto Shippuden", + "Naruto Shippuden" + ], + "titles": [ + { + "type": "Default", + "title": "Naruto: Shippuuden" + }, + { + "type": "Synonym", + "title": "Naruto Hurricane Chronicles" + }, + { + "type": "Japanese", + "title": "-ナルト- 疾風伝" + }, + { + "type": "English", + "title": "Naruto Shippuden" + }, + { + "type": "German", + "title": "Naruto Shippuden" + }, + { + "type": "Spanish", + "title": "Naruto Shippuden" + }, + { + "type": "French", + "title": "Naruto Shippuden" + } + ], + "aliases": [ + "Naruto: Shippuuden", + "Naruto Shippuden", + "-ナルト- 疾風伝", + "Naruto Hurricane Chronicles" + ], + "ids": { + "mal": 1735, + "jikan": 1735 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q12500134" + ], + "chinese_titles": [ + { + "title": "火影忍者 疾风传", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "火影忍者 疾风传", + "source": "AniList synonym", + "url": "https://anilist.co/anime/1735", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "火影忍者疾風傳", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q12500134", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "火影忍者疾風傳", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q12500134", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "火影忍者-疾風傳-", + "source": "Wikidata zh alias", + "url": "https://www.wikidata.org/wiki/Q12500134", + "confidence": "medium", + "region": "zh_tw" + }, + { + "title": "火影忍者疾風傳", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85%E7%96%BE%E9%A2%A8%E5%82%B3", + "confidence": "medium" + }, + { + "title": "火影忍者-疾風傳-", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q12500134", + "confidence": "medium" + }, + { + "title": "火影忍者 疾风传", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "나루토 질풍전", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EB%82%98%EB%A3%A8%ED%86%A0_%EC%A7%88%ED%92%8D%EC%A0%84" + }, + { + "title": "나루토 질풍전", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q12500134", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 1735, + "chinese_title": "火影忍者疾風傳", + "korean_title": "나루토 질풍전", + "chinese_titles_cn": [ + { + "title": "火影忍者 疾风传", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "火影忍者 疾风传", + "source": "AniList synonym", + "url": "https://anilist.co/anime/1735", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "火影忍者疾風傳", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q12500134", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "火影忍者疾風傳", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q12500134", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "火影忍者-疾風傳-", + "source": "Wikidata zh alias", + "url": "https://www.wikidata.org/wiki/Q12500134", + "confidence": "medium", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "火影忍者 疾风传", + "chinese_title_hk_mo": "火影忍者疾風傳", + "chinese_title_tw": "火影忍者疾風傳" + }, + { + "type": "anime", + "mal_id": 33486, + "url": "https://myanimelist.net/anime/33486/Boku_no_Hero_Academia_2nd_Season", + "rank": 674, + "popularity": 16, + "score": 8.05, + "members": 2735609, + "year": 2017, + "default_title": "Boku no Hero Academia 2nd Season", + "english_title": "My Hero Academia Season 2", + "cjk_title": "僕のヒーローアカデミア", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "僕のヒーローアカデミア" + ], + "latin_titles": [ + "Boku no Hero Academia 2nd Season", + "My Hero Academia Season 2", + "My Hero Academia – 2. Staffel", + "My Hero Academia Temporada 2", + "My Hero Academia Saison 2" + ], + "titles": [ + { + "type": "Default", + "title": "Boku no Hero Academia 2nd Season" + }, + { + "type": "Japanese", + "title": "僕のヒーローアカデミア" + }, + { + "type": "English", + "title": "My Hero Academia Season 2" + }, + { + "type": "German", + "title": "My Hero Academia – 2. Staffel" + }, + { + "type": "Spanish", + "title": "My Hero Academia Temporada 2" + }, + { + "type": "French", + "title": "My Hero Academia Saison 2" + } + ], + "aliases": [ + "Boku no Hero Academia 2nd Season", + "My Hero Academia Season 2", + "僕のヒーローアカデミア", + "My Hero Academia – 2. Staffel", + "My Hero Academia Temporada 2", + "My Hero Academia Saison 2" + ], + "ids": { + "mal": 33486, + "jikan": 33486 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q56276222" + ], + "anilist_id": 21856, + "korean_titles": [ + { + "title": "나의 히어로 아카데미아 2기", + "language": "ko", + "source": "anilist_synonym", + "source_url": "https://anilist.co/search/anime" + }, + { + "title": "나히아 2기", + "language": "ko", + "source": "anilist_synonym", + "source_url": "https://anilist.co/search/anime" + }, + { + "title": "나의 히어로 아카데미아 2기", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21856", + "confidence": "high", + "region": "ko" + }, + { + "title": "나히아 2기", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21856", + "confidence": "medium", + "region": "ko" + } + ], + "chinese_titles": [ + { + "title": "我的英雄学院 2", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学院第二季", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学院 第二季", + "source": "Bangumi subject page", + "url": "https://bangumi.tv/subject/185761", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "我的英雄学院第二季", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21856", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学院 第二季", + "source": "Bangumi subject page", + "url": "https://bangumi.tv/subject/185761", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Season-specific Chinese title is source-backed, but the checked source does not mark a Hong Kong/Macau variant." + }, + { + "title": "我的英雄学院 第二季", + "source": "Bangumi subject page", + "url": "https://bangumi.tv/subject/185761", + "confidence": "medium", + "region": "zh_tw", + "note": "Season-specific Chinese title is source-backed, but the checked source does not mark a Taiwan variant." + }, + { + "title": "我的英雄学院 2", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + }, + { + "title": "我的英雄学院第二季", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "我的英雄学院 2", + "korean_title": "나의 히어로 아카데미아 2기", + "chinese_titles_cn": [ + { + "title": "我的英雄学院 2", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学院第二季", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学院 第二季", + "source": "Bangumi subject page", + "url": "https://bangumi.tv/subject/185761", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "我的英雄学院第二季", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21856", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "我的英雄学院 第二季", + "source": "Bangumi subject page", + "url": "https://bangumi.tv/subject/185761", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Season-specific Chinese title is source-backed, but the checked source does not mark a Hong Kong/Macau variant." + } + ], + "chinese_titles_tw": [ + { + "title": "我的英雄学院 第二季", + "source": "Bangumi subject page", + "url": "https://bangumi.tv/subject/185761", + "confidence": "medium", + "region": "zh_tw", + "note": "Season-specific Chinese title is source-backed, but the checked source does not mark a Taiwan variant." + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "我的英雄学院 2", + "chinese_title_hk_mo": "我的英雄学院 第二季", + "chinese_title_tw": "我的英雄学院 第二季" + }, + { + "type": "anime", + "mal_id": 35760, + "url": "https://myanimelist.net/anime/35760/Shingeki_no_Kyojin_Season_3", + "rank": 91, + "popularity": 18, + "score": 8.64, + "members": 2668737, + "year": 2018, + "default_title": "Shingeki no Kyojin Season 3", + "english_title": "Attack on Titan Season 3", + "cjk_title": "進撃の巨人 Season3", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "進撃の巨人 Season3" + ], + "latin_titles": [ + "Shingeki no Kyojin Season 3", + "Attack on Titan Season 3", + "Attack on Titan 3. Staffel", + "Ataque a los Titanes Temporada 3", + "L'Attaque des Titans Saison 3" + ], + "titles": [ + { + "type": "Default", + "title": "Shingeki no Kyojin Season 3" + }, + { + "type": "Japanese", + "title": "進撃の巨人 Season3" + }, + { + "type": "English", + "title": "Attack on Titan Season 3" + }, + { + "type": "German", + "title": "Attack on Titan 3. Staffel" + }, + { + "type": "Spanish", + "title": "Ataque a los Titanes Temporada 3" + }, + { + "type": "French", + "title": "L'Attaque des Titans Saison 3" + } + ], + "aliases": [ + "Shingeki no Kyojin Season 3", + "Attack on Titan Season 3", + "進撃の巨人 Season3", + "Attack on Titan 3. Staffel", + "Ataque a los Titanes Temporada 3", + "L'Attaque des Titans Saison 3" + ], + "ids": { + "mal": 35760, + "jikan": 35760 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q60518750" + ], + "anilist_id": 99147, + "chinese_title": null, + "korean_title": "진격의 거인 3기 Part 1", + "chinese_titles_cn": [ + { + "title": "进击的巨人 第三季", + "source": "Bangumi tag/search result", + "url": "https://bangumi.tv/anime/tag/%E8%BF%9B%E5%87%BB%E7%9A%84%E5%B7%A8%E4%BA%BA", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "進擊的巨人 第三季", + "source": "Chinese Wikipedia anime article", + "url": "https://zh.wikipedia.org/wiki/%E9%80%B2%E6%93%8A%E7%9A%84%E5%B7%A8%E4%BA%BA_(%E5%8B%95%E7%95%AB)", + "confidence": "medium", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "진격의 거인 3기 Part 1", + "source": "Watcha", + "url": "https://watcha.com/ko-KR/contents/tR2Z8jR", + "confidence": "high", + "region": "ko" + }, + { + "title": "진격의 거인 3기", + "source": "Onnada", + "url": "https://anime.onnada.com/3942", + "confidence": "medium", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau season-specific Chinese title was found." + ], + "chinese_titles": [ + { + "title": "进击的巨人 第三季", + "source": "Bangumi tag/search result", + "url": "https://bangumi.tv/anime/tag/%E8%BF%9B%E5%87%BB%E7%9A%84%E5%B7%A8%E4%BA%BA", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "進擊的巨人 第三季", + "source": "Chinese Wikipedia anime article", + "url": "https://zh.wikipedia.org/wiki/%E9%80%B2%E6%93%8A%E7%9A%84%E5%B7%A8%E4%BA%BA_(%E5%8B%95%E7%95%AB)", + "confidence": "medium", + "region": "zh_tw" + } + ], + "chinese_title_cn": "进击的巨人 第三季", + "chinese_title_hk_mo": null, + "chinese_title_tw": "進擊的巨人 第三季" + }, + { + "type": "anime", + "mal_id": 28851, + "url": "https://myanimelist.net/anime/28851/Koe_no_Katachi", + "rank": 20, + "popularity": 19, + "score": 8.93, + "members": 2618971, + "year": null, + "default_title": "Koe no Katachi", + "english_title": "A Silent Voice", + "cjk_title": "聲の形", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "聲の形" + ], + "latin_titles": [ + "Koe no Katachi", + "The Shape of Voice", + "A Silent Voice", + "A Silent Voice", + "Una Voz Silenciosa", + "A Silent Voice" + ], + "titles": [ + { + "type": "Default", + "title": "Koe no Katachi" + }, + { + "type": "Synonym", + "title": "The Shape of Voice" + }, + { + "type": "Japanese", + "title": "聲の形" + }, + { + "type": "English", + "title": "A Silent Voice" + }, + { + "type": "German", + "title": "A Silent Voice" + }, + { + "type": "Spanish", + "title": "Una Voz Silenciosa" + }, + { + "type": "French", + "title": "A Silent Voice" + } + ], + "aliases": [ + "Koe no Katachi", + "A Silent Voice", + "聲の形", + "The Shape of Voice", + "Una Voz Silenciosa" + ], + "ids": { + "mal": 28851, + "jikan": 28851 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q23925035" + ], + "chinese_titles": [ + { + "title": "声之形", + "source": "Wikidata zh-cn label", + "url": "https://www.wikidata.org/wiki/Q23925035", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "聲之形", + "source": "Chinese Wikipedia article title", + "url": "https://zh.wikipedia.org/wiki/%E8%81%B2%E4%B9%8B%E5%BD%A2", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Source-backed Chinese title, but no Hong Kong/Macau film-specific variant was found." + }, + { + "title": "電影 聲之形", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q23925035", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "電影版 聲之形", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E9%9B%BB%E5%BD%B1%E7%89%88_%E8%81%B2%E4%B9%8B%E5%BD%A2", + "confidence": "medium" + }, + { + "title": "電影 聲之形", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q23925035", + "confidence": "medium" + }, + { + "title": "声之形", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q23925035", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "목소리의 형태 (영화)", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EB%AA%A9%EC%86%8C%EB%A6%AC%EC%9D%98_%ED%98%95%ED%83%9C_%28%EC%98%81%ED%99%94%29" + }, + { + "title": "목소리의 형태", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q23925035" + }, + { + "title": "목소리의 형태", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q23925035", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 20954, + "chinese_title": "電影版 聲之形", + "korean_title": "목소리의 형태 (영화)", + "chinese_titles_cn": [ + { + "title": "声之形", + "source": "Wikidata zh-cn label", + "url": "https://www.wikidata.org/wiki/Q23925035", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "聲之形", + "source": "Chinese Wikipedia article title", + "url": "https://zh.wikipedia.org/wiki/%E8%81%B2%E4%B9%8B%E5%BD%A2", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Source-backed Chinese title, but no Hong Kong/Macau film-specific variant was found." + } + ], + "chinese_titles_tw": [ + { + "title": "電影 聲之形", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q23925035", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "声之形", + "chinese_title_hk_mo": "聲之形", + "chinese_title_tw": "電影 聲之形" + }, + { + "type": "anime", + "mal_id": 38524, + "url": "https://myanimelist.net/anime/38524/Shingeki_no_Kyojin_Season_3_Part_2", + "rank": 8, + "popularity": 20, + "score": 9.05, + "members": 2595457, + "year": 2019, + "default_title": "Shingeki no Kyojin Season 3 Part 2", + "english_title": "Attack on Titan Season 3 Part 2", + "cjk_title": "進撃の巨人 Season3 Part.2", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "進撃の巨人 Season3 Part.2" + ], + "latin_titles": [ + "Shingeki no Kyojin Season 3 Part 2", + "Attack on Titan Season 3 Part 2", + "Attack on Titan Staffel 3 Teil 2", + "Ataque a los Titanes Temporada 3 Parte 2", + "L'Attaque des Titans Saison 3 Partie 2" + ], + "titles": [ + { + "type": "Default", + "title": "Shingeki no Kyojin Season 3 Part 2" + }, + { + "type": "Japanese", + "title": "進撃の巨人 Season3 Part.2" + }, + { + "type": "English", + "title": "Attack on Titan Season 3 Part 2" + }, + { + "type": "German", + "title": "Attack on Titan Staffel 3 Teil 2" + }, + { + "type": "Spanish", + "title": "Ataque a los Titanes Temporada 3 Parte 2" + }, + { + "type": "French", + "title": "L'Attaque des Titans Saison 3 Partie 2" + } + ], + "aliases": [ + "Shingeki no Kyojin Season 3 Part 2", + "Attack on Titan Season 3 Part 2", + "進撃の巨人 Season3 Part.2", + "Attack on Titan Staffel 3 Teil 2", + "Ataque a los Titanes Temporada 3 Parte 2", + "L'Attaque des Titans Saison 3 Partie 2" + ], + "ids": { + "mal": 38524, + "jikan": 38524 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q60518750" + ], + "anilist_id": 104578, + "chinese_title": null, + "korean_title": "진격의 거인 3기 Part 2", + "chinese_titles_cn": [ + { + "title": "进击的巨人 第三季 Part.2", + "source": "Bangumi subject page", + "url": "https://bangumi.tv/subject/263750", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "進擊的巨人 第三季 Part.2", + "source": "Bilibili Taiwan media page", + "url": "https://www.bilibili.com/bangumi/play/ss26963", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "진격의 거인 3기 Part 2", + "source": "Watcha", + "url": "https://watcha.com/ko-KR/contents/tlxkdZk", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau season-specific Chinese title was found." + ], + "chinese_titles": [ + { + "title": "进击的巨人 第三季 Part.2", + "source": "Bangumi subject page", + "url": "https://bangumi.tv/subject/263750", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "進擊的巨人 第三季 Part.2", + "source": "Bilibili Taiwan media page", + "url": "https://www.bilibili.com/bangumi/play/ss26963", + "confidence": "high", + "region": "zh_tw" + } + ], + "chinese_title_cn": "进击的巨人 第三季 Part.2", + "chinese_title_hk_mo": null, + "chinese_title_tw": "進擊的巨人 第三季 Part.2" + }, + { + "type": "anime", + "mal_id": 19815, + "url": "https://myanimelist.net/anime/19815/No_Game_No_Life", + "rank": 718, + "popularity": 21, + "score": 8.03, + "members": 2560158, + "year": 2014, + "default_title": "No Game No Life", + "english_title": "No Game, No Life", + "cjk_title": "ノーゲーム・ノーライフ", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ノーゲーム・ノーライフ" + ], + "latin_titles": [ + "No Game No Life", + "NGNL", + "No Game, No Life", + "No Game, No Life", + "No Game, No Life", + "No Game, No Life" + ], + "titles": [ + { + "type": "Default", + "title": "No Game No Life" + }, + { + "type": "Synonym", + "title": "NGNL" + }, + { + "type": "Japanese", + "title": "ノーゲーム・ノーライフ" + }, + { + "type": "English", + "title": "No Game, No Life" + }, + { + "type": "German", + "title": "No Game, No Life" + }, + { + "type": "Spanish", + "title": "No Game, No Life" + }, + { + "type": "French", + "title": "No Game, No Life" + } + ], + "aliases": [ + "No Game No Life", + "No Game, No Life", + "ノーゲーム・ノーライフ", + "NGNL" + ], + "ids": { + "mal": 19815, + "jikan": 19815 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q47469861" + ], + "chinese_titles": [ + { + "title": "NO GAME NO LIFE游戏人生", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "遊戲人生", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "NO GAME NO LIFE 遊戲人生", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "NO GAME NO LIFE 遊戲人生", + "source": "Chinese Wikipedia official Mainland China title", + "url": "https://zh.wikipedia.org/wiki/NO_GAME_NO_LIFE_%E9%81%8A%E6%88%B2%E4%BA%BA%E7%94%9F", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "游戏人生", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q47469861", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "NO GAME NO LIFE 遊戲人生", + "source": "Chinese Wikipedia official Hong Kong title", + "url": "https://zh.wikipedia.org/wiki/NO_GAME_NO_LIFE_%E9%81%8A%E6%88%B2%E4%BA%BA%E7%94%9F", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "NO GAME NO LIFE 遊戲人生", + "source": "Chinese Wikipedia official Taiwan title", + "url": "https://zh.wikipedia.org/wiki/NO_GAME_NO_LIFE_%E9%81%8A%E6%88%B2%E4%BA%BA%E7%94%9F", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "遊戲人生", + "source": "Chinese Wikipedia common translation", + "url": "https://zh.wikipedia.org/wiki/NO_GAME_NO_LIFE_%E9%81%8A%E6%88%B2%E4%BA%BA%E7%94%9F", + "confidence": "medium", + "region": "zh_tw" + }, + { + "title": "游戏人生", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q47469861", + "confidence": "medium" + }, + { + "title": "NO GAME NO LIFE游戏人生", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + }, + { + "title": "遊戲人生", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + }, + { + "title": "NO GAME NO LIFE 遊戲人生", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "노 게임 노 라이프", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q47469861" + }, + { + "title": "노 게임 노 라이프", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q47469861", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 19815, + "chinese_title": "游戏人生", + "korean_title": "노 게임 노 라이프", + "chinese_titles_cn": [ + { + "title": "NO GAME NO LIFE游戏人生", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "遊戲人生", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "NO GAME NO LIFE 遊戲人生", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "NO GAME NO LIFE 遊戲人生", + "source": "Chinese Wikipedia official Mainland China title", + "url": "https://zh.wikipedia.org/wiki/NO_GAME_NO_LIFE_%E9%81%8A%E6%88%B2%E4%BA%BA%E7%94%9F", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "游戏人生", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q47469861", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "NO GAME NO LIFE 遊戲人生", + "source": "Chinese Wikipedia official Hong Kong title", + "url": "https://zh.wikipedia.org/wiki/NO_GAME_NO_LIFE_%E9%81%8A%E6%88%B2%E4%BA%BA%E7%94%9F", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "NO GAME NO LIFE 遊戲人生", + "source": "Chinese Wikipedia official Taiwan title", + "url": "https://zh.wikipedia.org/wiki/NO_GAME_NO_LIFE_%E9%81%8A%E6%88%B2%E4%BA%BA%E7%94%9F", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "遊戲人生", + "source": "Chinese Wikipedia common translation", + "url": "https://zh.wikipedia.org/wiki/NO_GAME_NO_LIFE_%E9%81%8A%E6%88%B2%E4%BA%BA%E7%94%9F", + "confidence": "medium", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "NO GAME NO LIFE游戏人生", + "chinese_title_hk_mo": "NO GAME NO LIFE 遊戲人生", + "chinese_title_tw": "NO GAME NO LIFE 遊戲人生" + }, + { + "type": "anime", + "mal_id": 1575, + "url": "https://myanimelist.net/anime/1575/Code_Geass__Hangyaku_no_Lelouch", + "rank": 64, + "popularity": 22, + "score": 8.71, + "members": 2474843, + "year": 2006, + "default_title": "Code Geass: Hangyaku no Lelouch", + "english_title": "Code Geass: Lelouch of the Rebellion", + "cjk_title": "コードギアス 反逆のルルーシュ", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "コードギアス 反逆のルルーシュ" + ], + "latin_titles": [ + "Code Geass: Hangyaku no Lelouch", + "Code Geass: Lelouch of the Rebellion", + "Code Geass: Lelouch of the Rebellion", + "Code Geass: Lelouch, el de la Rebelión", + "Code Geass: Lelouch of the Rebellion" + ], + "titles": [ + { + "type": "Default", + "title": "Code Geass: Hangyaku no Lelouch" + }, + { + "type": "Japanese", + "title": "コードギアス 反逆のルルーシュ" + }, + { + "type": "English", + "title": "Code Geass: Lelouch of the Rebellion" + }, + { + "type": "German", + "title": "Code Geass: Lelouch of the Rebellion" + }, + { + "type": "Spanish", + "title": "Code Geass: Lelouch, el de la Rebelión" + }, + { + "type": "French", + "title": "Code Geass: Lelouch of the Rebellion" + } + ], + "aliases": [ + "Code Geass: Hangyaku no Lelouch", + "Code Geass: Lelouch of the Rebellion", + "コードギアス 反逆のルルーシュ", + "Code Geass: Lelouch, el de la Rebelión" + ], + "ids": { + "mal": 1575, + "jikan": 1575 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q4384067" + ], + "chinese_titles": [ + { + "title": "反叛的魯路修", + "source": "Chinese Wikipedia formal Hong Kong title", + "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "叛逆的魯魯修", + "source": "Chinese Wikipedia Hong Kong TV title", + "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "Code Geass 叛逆的魯魯修", + "source": "Chinese Wikipedia Hong Kong streaming title", + "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "Code Geass 反叛的魯路修", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q4384067", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "反叛的魯路修", + "source": "Chinese Wikipedia formal Taiwan title", + "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "Code Geass 反叛的魯路修", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", + "confidence": "medium" + }, + { + "title": "Code Geass反叛的魯路修", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q4384067", + "confidence": "medium" + }, + { + "title": "叛逆的魯魯修", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q4384067", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "코드 기어스 반역의 를르슈", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EC%BD%94%EB%93%9C_%EA%B8%B0%EC%96%B4%EC%8A%A4_%EB%B0%98%EC%97%AD%EC%9D%98_%EB%A5%BC%EB%A5%B4%EC%8A%88" + }, + { + "title": "코드 기아스 반역의 를르슈", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q4384067" + }, + { + "title": "코드 기아스 반역의 를르슈", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q4384067", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 1575, + "chinese_title": "Code Geass 反叛的魯路修", + "korean_title": "코드 기어스 반역의 를르슈", + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [ + { + "title": "反叛的魯路修", + "source": "Chinese Wikipedia formal Hong Kong title", + "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "叛逆的魯魯修", + "source": "Chinese Wikipedia Hong Kong TV title", + "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "Code Geass 叛逆的魯魯修", + "source": "Chinese Wikipedia Hong Kong streaming title", + "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "Code Geass 反叛的魯路修", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q4384067", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "反叛的魯路修", + "source": "Chinese Wikipedia formal Taiwan title", + "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [ + "No source-backed Mainland China title was found in the checked sources." + ], + "chinese_title_cn": null, + "chinese_title_hk_mo": "反叛的魯路修", + "chinese_title_tw": "Code Geass 反叛的魯路修" + }, + { + "type": "anime", + "mal_id": 31240, + "url": "https://myanimelist.net/anime/31240/Re_Zero_kara_Hajimeru_Isekai_Seikatsu", + "rank": 388, + "popularity": 23, + "score": 8.25, + "members": 2462337, + "year": 2016, + "default_title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "english_title": "Re:ZERO -Starting Life in Another World-", + "cjk_title": "Re:ゼロから始める異世界生活", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "Re:ゼロから始める異世界生活" + ], + "latin_titles": [ + "Re:Zero kara Hajimeru Isekai Seikatsu", + "Re: Life in a different world from zero", + "ReZero", + "Re:ZERO -Starting Life in Another World-", + "Re:ZERO -Starting Life in Another World-", + "Re:Zero -Empezar de cero en un mundo diferente-", + "Re:Zero -Starting Life in Another World-" + ], + "titles": [ + { + "type": "Default", + "title": "Re:Zero kara Hajimeru Isekai Seikatsu" + }, + { + "type": "Synonym", + "title": "Re: Life in a different world from zero" + }, + { + "type": "Synonym", + "title": "ReZero" + }, + { + "type": "Japanese", + "title": "Re:ゼロから始める異世界生活" + }, + { + "type": "English", + "title": "Re:ZERO -Starting Life in Another World-" + }, + { + "type": "German", + "title": "Re:ZERO -Starting Life in Another World-" + }, + { + "type": "Spanish", + "title": "Re:Zero -Empezar de cero en un mundo diferente-" + }, + { + "type": "French", + "title": "Re:Zero -Starting Life in Another World-" + } + ], + "aliases": [ + "Re:Zero kara Hajimeru Isekai Seikatsu", + "Re:ZERO -Starting Life in Another World-", + "Re:ゼロから始める異世界生活", + "Re: Life in a different world from zero", + "ReZero", + "Re:Zero -Empezar de cero en un mundo diferente-", + "Re:Zero -Starting Life in Another World-" + ], + "ids": { + "mal": 31240, + "jikan": 31240 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q85676876" + ], + "chinese_titles": [ + { + "title": "Re:从零开始的异世界生活", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "Re:从零开始的异世界生活", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21355", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + }, + { + "title": "Re:從零開始的異世界生活 第一季", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q85676876", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "Re:從零開始的異世界生活 第一季", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q85676876", + "confidence": "medium" + }, + { + "title": "Re:从零开始的异世界生活", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "anilist_id": 21355, + "chinese_title": "Re:從零開始的異世界生活 第一季", + "korean_title": "Re: 제로부터 시작하는 이세계 생활", + "chinese_titles_cn": [ + { + "title": "Re:从零开始的异世界生活", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "Re:从零开始的异世界生活", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21355", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "Re:從零開始的異世界生活 第一季", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q85676876", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "Re: 제로부터 시작하는 이세계 생활", + "source": "Apple TV Korea", + "url": "https://tv.apple.com/kr/show/re-%E1%84%8C%E1%85%A6%E1%84%85%E1%85%A9%E1%84%87%E1%85%AE%E1%84%90%E1%85%A5-%E1%84%89%E1%85%B5%E1%84%8C%E1%85%A1%E1%86%A8%E1%84%92%E1%85%A1%E1%86%AB%E1%85%B3%E1%86%AB-%E1%84%8B%E1%85%B5%E1%84%89%E1%85%A6%E1%84%80%E1%85%A8-%E1%84%89%E1%85%A2%E1%86%BC%E1%84%92%E1%85%AA%E1%86%AF/umc.cmc.4zdqlm8jim5xrtehsf1w67ano", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ], + "chinese_title_cn": "Re:从零开始的异世界生活", + "chinese_title_hk_mo": null, + "chinese_title_tw": "Re:從零開始的異世界生活 第一季" + }, + { + "type": "anime", + "mal_id": 23273, + "url": "https://myanimelist.net/anime/23273/Shigatsu_wa_Kimi_no_Uso", + "rank": 90, + "popularity": 24, + "score": 8.64, + "members": 2428451, + "year": 2014, + "default_title": "Shigatsu wa Kimi no Uso", + "english_title": "Your Lie in April", + "cjk_title": "四月は君の嘘", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "四月は君の嘘" + ], + "latin_titles": [ + "Shigatsu wa Kimi no Uso", + "Kimiuso", + "Your Lie in April", + "Shigatsu Wa Kimi No Uso - Sekunden in Moll", + "Your Lie in April", + "Your Lie in April" + ], + "titles": [ + { + "type": "Default", + "title": "Shigatsu wa Kimi no Uso" + }, + { + "type": "Synonym", + "title": "Kimiuso" + }, + { + "type": "Japanese", + "title": "四月は君の嘘" + }, + { + "type": "English", + "title": "Your Lie in April" + }, + { + "type": "German", + "title": "Shigatsu Wa Kimi No Uso - Sekunden in Moll" + }, + { + "type": "Spanish", + "title": "Your Lie in April" + }, + { + "type": "French", + "title": "Your Lie in April" + } + ], + "aliases": [ + "Shigatsu wa Kimi no Uso", + "Your Lie in April", + "四月は君の嘘", + "Kimiuso", + "Shigatsu Wa Kimi No Uso - Sekunden in Moll" + ], + "ids": { + "mal": 23273, + "jikan": 23273 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q91333870" + ], + "korean_titles": [ + { + "title": "4월은 너의 거짓말", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q91333870" + }, + { + "title": "4월은 너의 거짓말", + "source": "Wikidata Korean label", + "url": "https://www.wikidata.org/wiki/Q91333870", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 20665, + "chinese_titles": [ + { + "title": "四月是你的谎言", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "四月是你的谎言", + "source": "AniList synonym", + "url": "https://anilist.co/anime/20665", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + }, + { + "title": "四月是你的謊言", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%9B%9B%E6%9C%88%E6%98%AF%E4%BD%A0%E7%9A%84%E8%AC%8A%E8%A8%80", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + }, + { + "title": "四月是你的谎言", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "四月是你的谎言", + "korean_title": "4월은 너의 거짓말", + "chinese_titles_cn": [ + { + "title": "四月是你的谎言", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "四月是你的谎言", + "source": "AniList synonym", + "url": "https://anilist.co/anime/20665", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "四月是你的謊言", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%9B%9B%E6%9C%88%E6%98%AF%E4%BD%A0%E7%9A%84%E8%AC%8A%E8%A8%80", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "title_enrichment_notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ], + "chinese_title_cn": "四月是你的谎言", + "chinese_title_hk_mo": null, + "chinese_title_tw": "四月是你的謊言" + }, + { + "type": "anime", + "mal_id": 36456, + "url": "https://myanimelist.net/anime/36456/Boku_no_Hero_Academia_3rd_Season", + "rank": 787, + "popularity": 25, + "score": 7.98, + "members": 2384829, + "year": 2018, + "default_title": "Boku no Hero Academia 3rd Season", + "english_title": "My Hero Academia Season 3", + "cjk_title": "僕のヒーローアカデミア", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "僕のヒーローアカデミア" + ], + "latin_titles": [ + "Boku no Hero Academia 3rd Season", + "My Hero Academia Season 3", + "My Hero Academia 3. Staffel", + "My Hero Academia Temporada 3", + "My Hero Academia Saison 3" + ], + "titles": [ + { + "type": "Default", + "title": "Boku no Hero Academia 3rd Season" + }, + { + "type": "Japanese", + "title": "僕のヒーローアカデミア" + }, + { + "type": "English", + "title": "My Hero Academia Season 3" + }, + { + "type": "German", + "title": "My Hero Academia 3. Staffel" + }, + { + "type": "Spanish", + "title": "My Hero Academia Temporada 3" + }, + { + "type": "French", + "title": "My Hero Academia Saison 3" + } + ], + "aliases": [ + "Boku no Hero Academia 3rd Season", + "My Hero Academia Season 3", + "僕のヒーローアカデミア", + "My Hero Academia 3. Staffel", + "My Hero Academia Temporada 3", + "My Hero Academia Saison 3" + ], + "ids": { + "mal": 36456, + "jikan": 36456 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:00Z", + "wikidata_ids": [ + "Q56276223" + ], + "anilist_id": 100166, + "chinese_titles": [ + { + "title": "我的英雄学院 3", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学院第三季", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学院第三季", + "source": "AniList synonym", + "url": "https://anilist.co/anime/100166", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese season synonym; source does not explicitly distinguish Mainland China." + }, + { + "title": "我的英雄学园", + "source": "Chinese Wikipedia regional formal title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China formal franchise title, not season-specific." + }, + { + "title": "我的英雄学院", + "source": "Chinese Wikipedia regional formal title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "region": "zh_hk_mo", + "note": "Hong Kong/Macau formal franchise title, not season-specific." + }, + { + "title": "我的英雄学院", + "source": "Chinese Wikipedia regional formal title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan formal franchise title, not season-specific." + }, + { + "title": "我的英雄学院 3", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + }, + { + "title": "我的英雄学院第三季", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "我的英雄学院 3", + "korean_title": "나의 히어로 아카데미아 3기", + "chinese_titles_cn": [ + { + "title": "我的英雄学院 3", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学院第三季", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学院第三季", + "source": "AniList synonym", + "url": "https://anilist.co/anime/100166", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese season synonym; source does not explicitly distinguish Mainland China." + }, + { + "title": "我的英雄学园", + "source": "Chinese Wikipedia regional formal title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China formal franchise title, not season-specific." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "我的英雄学院", + "source": "Chinese Wikipedia regional formal title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "region": "zh_hk_mo", + "note": "Hong Kong/Macau formal franchise title, not season-specific." + } + ], + "chinese_titles_tw": [ + { + "title": "我的英雄学院", + "source": "Chinese Wikipedia regional formal title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan formal franchise title, not season-specific." + } + ], + "korean_titles": [ + { + "title": "나의 히어로 아카데미아 3기", + "source": "Kinolights", + "url": "https://m.kinolights.com/title/84843", + "confidence": "high", + "region": "ko" + }, + { + "title": "나의 히어로 아카데미아 3기", + "source": "Daum News / Animax Korea report", + "url": "https://v.daum.net/v/obsQ17ZuWo?f=p", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No mainstream Korean source-backed title was recorded in this first pass." + ], + "chinese_title_cn": "我的英雄学院 3", + "chinese_title_hk_mo": "我的英雄学院", + "chinese_title_tw": "我的英雄学院" + }, + { + "type": "anime", + "mal_id": 4224, + "url": "https://myanimelist.net/anime/4224/Toradora", + "rank": 709, + "popularity": 26, + "score": 8.04, + "members": 2368272, + "year": 2008, + "default_title": "Toradora!", + "english_title": "Toradora!", + "cjk_title": "とらドラ!", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "とらドラ!" + ], + "latin_titles": [ + "Toradora!", + "Tiger X Dragon", + "Toradora!" + ], + "titles": [ + { + "type": "Default", + "title": "Toradora!" + }, + { + "type": "Synonym", + "title": "Tiger X Dragon" + }, + { + "type": "Japanese", + "title": "とらドラ!" + }, + { + "type": "English", + "title": "Toradora!" + } + ], + "aliases": [ + "Toradora!", + "とらドラ!", + "Tiger X Dragon" + ], + "ids": { + "mal": 4224, + "jikan": 4224 + }, + "complexity_reasons": [ + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q61400349" + ], + "korean_titles": [ + { + "title": "토라도라!", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q61400349" + }, + { + "title": "토라도라!", + "source": "Wikidata Korean label", + "url": "https://www.wikidata.org/wiki/Q61400349", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 4224, + "chinese_titles": [ + { + "title": "龙与虎", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "龙与虎", + "source": "AniList synonym", + "url": "https://anilist.co/anime/4224", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + }, + { + "title": "虎與龍", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E9%BE%99%E4%B8%8E%E8%99%8E", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + }, + { + "title": "龙与虎", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "龙与虎", + "korean_title": "토라도라!", + "chinese_titles_cn": [ + { + "title": "龙与虎", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "龙与虎", + "source": "AniList synonym", + "url": "https://anilist.co/anime/4224", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "虎與龍", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E9%BE%99%E4%B8%8E%E8%99%8E", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "title_enrichment_notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ], + "chinese_title_cn": "龙与虎", + "chinese_title_hk_mo": null, + "chinese_title_tw": "虎與龍" + }, + { + "type": "anime", + "mal_id": 32182, + "url": "https://myanimelist.net/anime/32182/Mob_Psycho_100", + "rank": 172, + "popularity": 27, + "score": 8.49, + "members": 2322835, + "year": 2016, + "default_title": "Mob Psycho 100", + "english_title": "Mob Psycho 100", + "cjk_title": "モブサイコ100", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "モブサイコ100" + ], + "latin_titles": [ + "Mob Psycho 100", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred", + "Mob Psycho 100" + ], + "titles": [ + { + "type": "Default", + "title": "Mob Psycho 100" + }, + { + "type": "Synonym", + "title": "Mob Psycho Hyaku" + }, + { + "type": "Synonym", + "title": "Mob Psycho One Hundred" + }, + { + "type": "Japanese", + "title": "モブサイコ100" + }, + { + "type": "English", + "title": "Mob Psycho 100" + } + ], + "aliases": [ + "Mob Psycho 100", + "モブサイコ100", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "ids": { + "mal": 32182, + "jikan": 32182 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "season/part/number marker", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q114009808" + ], + "anilist_id": 21507, + "chinese_title": null, + "korean_title": "모브 사이코 100", + "chinese_titles_cn": [ + { + "title": "路人超能100", + "source": "Chinese Wikipedia formal title", + "url": "https://zh.wikipedia.org/wiki/%E8%B7%AF%E4%BA%BA%E8%B6%85%E8%83%BD100", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland animation title listed by Chinese Wikipedia." + }, + { + "title": "灵能百分百", + "source": "Chinese Wikipedia formal title", + "url": "https://zh.wikipedia.org/wiki/%E8%B7%AF%E4%BA%BA%E8%B6%85%E8%83%BD100", + "confidence": "medium", + "region": "zh_cn", + "note": "Mainland title listed by Chinese Wikipedia." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "路人超能100", + "source": "Chinese Wikipedia formal title", + "url": "https://zh.wikipedia.org/wiki/%E8%B7%AF%E4%BA%BA%E8%B6%85%E8%83%BD100", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "모브 사이코 100", + "source": "Netflix Korea", + "url": "https://www.netflix.com/kr/title/80179798", + "confidence": "high", + "region": "ko" + }, + { + "title": "모브사이코100", + "source": "Apple TV Korea", + "url": "https://tv.apple.com/kr/show/%E1%84%86%E1%85%A9%E1%84%87%E1%85%B3%E1%84%89%E1%85%A1%E1%84%8B%E1%85%B5%E1%84%8F%E1%85%A9100/umc.cmc.3fcfxpl733t5fzl2ob612r3on", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ], + "chinese_titles": [ + { + "title": "路人超能100", + "source": "Chinese Wikipedia formal title", + "url": "https://zh.wikipedia.org/wiki/%E8%B7%AF%E4%BA%BA%E8%B6%85%E8%83%BD100", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland animation title listed by Chinese Wikipedia." + }, + { + "title": "灵能百分百", + "source": "Chinese Wikipedia formal title", + "url": "https://zh.wikipedia.org/wiki/%E8%B7%AF%E4%BA%BA%E8%B6%85%E8%83%BD100", + "confidence": "medium", + "region": "zh_cn", + "note": "Mainland title listed by Chinese Wikipedia." + }, + { + "title": "路人超能100", + "source": "Chinese Wikipedia formal title", + "url": "https://zh.wikipedia.org/wiki/%E8%B7%AF%E4%BA%BA%E8%B6%85%E8%83%BD100", + "confidence": "high", + "region": "zh_tw" + } + ], + "chinese_title_cn": "路人超能100", + "chinese_title_hk_mo": null, + "chinese_title_tw": "路人超能100" + }, + { + "type": "anime", + "mal_id": 20507, + "url": "https://myanimelist.net/anime/20507/Noragami", + "rank": 858, + "popularity": 28, + "score": 7.94, + "members": 2317912, + "year": 2014, + "default_title": "Noragami", + "english_title": "Noragami", + "cjk_title": "ノラガミ", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ノラガミ" + ], + "latin_titles": [ + "Noragami", + "Noragami" + ], + "titles": [ + { + "type": "Default", + "title": "Noragami" + }, + { + "type": "Japanese", + "title": "ノラガミ" + }, + { + "type": "English", + "title": "Noragami" + } + ], + "aliases": [ + "Noragami", + "ノラガミ" + ], + "ids": { + "mal": 20507, + "jikan": 20507 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q134397569" + ], + "anilist_id": 20447, + "chinese_titles": [ + { + "title": "野良神", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "野良神", + "source": "Chinese Wikipedia regional title", + "url": "https://zh.wikipedia.org/wiki/%E9%87%8E%E8%89%AF%E7%A5%9E", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "流浪神差", + "source": "Chinese Wikipedia regional title", + "url": "https://zh.wikipedia.org/wiki/%E9%87%8E%E8%89%AF%E7%A5%9E", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "流浪神差", + "source": "Chinese Wikipedia regional title", + "url": "https://zh.wikipedia.org/wiki/%E9%87%8E%E8%89%AF%E7%A5%9E", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "野良神", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "野良神", + "korean_title": "노라가미", + "chinese_titles_cn": [ + { + "title": "野良神", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "野良神", + "source": "Chinese Wikipedia regional title", + "url": "https://zh.wikipedia.org/wiki/%E9%87%8E%E8%89%AF%E7%A5%9E", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "流浪神差", + "source": "Chinese Wikipedia regional title", + "url": "https://zh.wikipedia.org/wiki/%E9%87%8E%E8%89%AF%E7%A5%9E", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "流浪神差", + "source": "Chinese Wikipedia regional title", + "url": "https://zh.wikipedia.org/wiki/%E9%87%8E%E8%89%AF%E7%A5%9E", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "노라가미", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EB%85%B8%EB%9D%BC%EA%B0%80%EB%AF%B8", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "野良神", + "chinese_title_hk_mo": "流浪神差", + "chinese_title_tw": "流浪神差" + }, + { + "type": "anime", + "mal_id": 31043, + "url": "https://myanimelist.net/anime/31043/Boku_dake_ga_Inai_Machi", + "rank": 313, + "popularity": 29, + "score": 8.31, + "members": 2295776, + "year": 2016, + "default_title": "Boku dake ga Inai Machi", + "english_title": "Erased", + "cjk_title": "僕だけがいない街", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "僕だけがいない街" + ], + "latin_titles": [ + "Boku dake ga Inai Machi", + "The Town Where Only I am Missing", + "BokuMachi", + "Erased", + "ERASED - Die Stadt, in der es mich nicht gibt -", + "Desaparecido", + "ERASED" + ], + "titles": [ + { + "type": "Default", + "title": "Boku dake ga Inai Machi" + }, + { + "type": "Synonym", + "title": "The Town Where Only I am Missing" + }, + { + "type": "Synonym", + "title": "BokuMachi" + }, + { + "type": "Japanese", + "title": "僕だけがいない街" + }, + { + "type": "English", + "title": "Erased" + }, + { + "type": "German", + "title": "ERASED - Die Stadt, in der es mich nicht gibt -" + }, + { + "type": "Spanish", + "title": "Desaparecido" + }, + { + "type": "French", + "title": "ERASED" + } + ], + "aliases": [ + "Boku dake ga Inai Machi", + "Erased", + "僕だけがいない街", + "The Town Where Only I am Missing", + "BokuMachi", + "ERASED - Die Stadt, in der es mich nicht gibt -", + "Desaparecido", + "ERASED" + ], + "ids": { + "mal": 31043, + "jikan": 31043 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q59958500" + ], + "anilist_id": 21234, + "chinese_title": null, + "korean_title": "나만이 없는 거리", + "chinese_titles_cn": [ + { + "title": "只有我不存在的城市", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%8F%AA%E6%9C%89%E6%88%91%E4%B8%8D%E5%AD%98%E5%9C%A8%E7%9A%84%E5%9F%8E%E5%B8%82", + "confidence": "medium", + "region": "zh_cn", + "note": "Chinese page title; source does not explicitly distinguish Mainland China." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "只有我不存在的城市", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%8F%AA%E6%9C%89%E6%88%91%E4%B8%8D%E5%AD%98%E5%9C%A8%E7%9A%84%E5%9F%8E%E5%B8%82", + "confidence": "medium", + "region": "zh_tw", + "note": "Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "korean_titles": [ + { + "title": "나만이 없는 거리", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EB%82%98%EB%A7%8C%EC%9D%B4_%EC%97%86%EB%8A%94_%EA%B1%B0%EB%A6%AC", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ], + "chinese_titles": [ + { + "title": "只有我不存在的城市", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%8F%AA%E6%9C%89%E6%88%91%E4%B8%8D%E5%AD%98%E5%9C%A8%E7%9A%84%E5%9F%8E%E5%B8%82", + "confidence": "medium", + "region": "zh_cn", + "note": "Chinese page title; source does not explicitly distinguish Mainland China." + }, + { + "title": "只有我不存在的城市", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%8F%AA%E6%9C%89%E6%88%91%E4%B8%8D%E5%AD%98%E5%9C%A8%E7%9A%84%E5%9F%8E%E5%B8%82", + "confidence": "medium", + "region": "zh_tw", + "note": "Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "chinese_title_cn": "只有我不存在的城市", + "chinese_title_hk_mo": null, + "chinese_title_tw": "只有我不存在的城市" + }, + { + "type": "anime", + "mal_id": 40028, + "url": "https://myanimelist.net/anime/40028/Shingeki_no_Kyojin__The_Final_Season", + "rank": 39, + "popularity": 30, + "score": 8.79, + "members": 2292494, + "year": 2021, + "default_title": "Shingeki no Kyojin: The Final Season", + "english_title": "Attack on Titan: Final Season", + "cjk_title": "進撃の巨人 The Final Season", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "進撃の巨人 The Final Season" + ], + "latin_titles": [ + "Shingeki no Kyojin: The Final Season", + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4", + "Attack on Titan: Final Season", + "Attack on Titan Final Season", + "Ataque a los Titanes Temporada Final", + "L'Attaque des Titans Saison Finale" + ], + "titles": [ + { + "type": "Default", + "title": "Shingeki no Kyojin: The Final Season" + }, + { + "type": "Synonym", + "title": "Shingeki no Kyojin Season 4" + }, + { + "type": "Synonym", + "title": "Attack on Titan Season 4" + }, + { + "type": "Japanese", + "title": "進撃の巨人 The Final Season" + }, + { + "type": "English", + "title": "Attack on Titan: Final Season" + }, + { + "type": "German", + "title": "Attack on Titan Final Season" + }, + { + "type": "Spanish", + "title": "Ataque a los Titanes Temporada Final" + }, + { + "type": "French", + "title": "L'Attaque des Titans Saison Finale" + } + ], + "aliases": [ + "Shingeki no Kyojin: The Final Season", + "Attack on Titan: Final Season", + "進撃の巨人 The Final Season", + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4", + "Attack on Titan Final Season", + "Ataque a los Titanes Temporada Final", + "L'Attaque des Titans Saison Finale" + ], + "ids": { + "mal": 40028, + "jikan": 40028 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q100332172" + ], + "anilist_id": 110277, + "korean_titles": [ + { + "title": "진격의 거인 더 파이널 시즌", + "language": "ko", + "source": "anilist_synonym", + "source_url": "https://anilist.co/search/anime" + }, + { + "title": "진격의 거인 더 파이널 시즌", + "source": "AniList synonym", + "url": "https://anilist.co/anime/110277", + "confidence": "high", + "region": "ko" + } + ], + "chinese_title": null, + "korean_title": "진격의 거인 더 파이널 시즌", + "chinese_titles_cn": [ + { + "title": "进击的巨人 最终季", + "source": "LAFTEL zh-Hans", + "url": "https://laftel.tv/zh-Hans/series/9/19", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "進擊的巨人 The Final Season", + "source": "Bahamut Anime Crazy", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=20675", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "進擊的巨人Final Season", + "source": "MyVideo Taiwan", + "url": "https://www.myvideo.net.tw/details/3/14196", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [ + "No source-backed regional Chinese title for this season was recorded in this first pass.", + "No Hong Kong/Macau-specific title was found in this pass." + ], + "chinese_titles": [ + { + "title": "进击的巨人 最终季", + "source": "LAFTEL zh-Hans", + "url": "https://laftel.tv/zh-Hans/series/9/19", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "進擊的巨人 The Final Season", + "source": "Bahamut Anime Crazy", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=20675", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "進擊的巨人Final Season", + "source": "MyVideo Taiwan", + "url": "https://www.myvideo.net.tw/details/3/14196", + "confidence": "high", + "region": "zh_tw" + } + ], + "chinese_title_cn": "进击的巨人 最终季", + "chinese_title_hk_mo": null, + "chinese_title_tw": "進擊的巨人 The Final Season" + }, + { + "type": "anime", + "mal_id": 22199, + "url": "https://myanimelist.net/anime/22199/Akame_ga_Kill", + "rank": 2339, + "popularity": 31, + "score": 7.48, + "members": 2272044, + "year": 2014, + "default_title": "Akame ga Kill!", + "english_title": "Akame ga Kill!", + "cjk_title": "アカメが斬る!", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "アカメが斬る!" + ], + "latin_titles": [ + "Akame ga Kill!", + "Akame ga Kiru!", + "Akame ga Kill!", + "Red Eyes Sword - Akame ga Kill!" + ], + "titles": [ + { + "type": "Default", + "title": "Akame ga Kill!" + }, + { + "type": "Synonym", + "title": "Akame ga Kiru!" + }, + { + "type": "Japanese", + "title": "アカメが斬る!" + }, + { + "type": "English", + "title": "Akame ga Kill!" + }, + { + "type": "French", + "title": "Red Eyes Sword - Akame ga Kill!" + } + ], + "aliases": [ + "Akame ga Kill!", + "アカメが斬る!", + "Akame ga Kiru!", + "Red Eyes Sword - Akame ga Kill!" + ], + "ids": { + "mal": 22199, + "jikan": 22199 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q57312224" + ], + "korean_titles": [ + { + "title": "아카메가 벤다!", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q57312224" + }, + { + "title": "아카메가 벤다!", + "source": "Wikidata Korean label", + "url": "https://www.wikidata.org/wiki/Q57312224", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 20613, + "chinese_titles": [ + { + "title": "斬!赤紅之瞳", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "斬!赤紅之瞳", + "source": "AniList synonym", + "url": "https://anilist.co/anime/20613", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese synonym; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + }, + { + "title": "斬!赤紅之瞳", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "斬!赤紅之瞳", + "korean_title": "아카메가 벤다!", + "chinese_titles_cn": [ + { + "title": "斬!赤紅之瞳", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "斬!赤紅之瞳", + "source": "AniList synonym", + "url": "https://anilist.co/anime/20613", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese synonym; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "title_enrichment_notes": [ + "No Mainland China or Hong Kong/Macau-specific Chinese title found in the first pass." + ], + "chinese_title_cn": "斬!赤紅之瞳", + "chinese_title_hk_mo": null, + "chinese_title_tw": "斬!赤紅之瞳" + }, + { + "type": "anime", + "mal_id": 24833, + "url": "https://myanimelist.net/anime/24833/Ansatsu_Kyoushitsu", + "rank": 643, + "popularity": 32, + "score": 8.07, + "members": 2217378, + "year": 2015, + "default_title": "Ansatsu Kyoushitsu", + "english_title": "Assassination Classroom", + "cjk_title": "暗殺教室", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "暗殺教室" + ], + "latin_titles": [ + "Ansatsu Kyoushitsu", + "Assassination Classroom", + "Assassination Classroom", + "Assassination Classroom", + "Assassination Classroom" + ], + "titles": [ + { + "type": "Default", + "title": "Ansatsu Kyoushitsu" + }, + { + "type": "Japanese", + "title": "暗殺教室" + }, + { + "type": "English", + "title": "Assassination Classroom" + }, + { + "type": "German", + "title": "Assassination Classroom" + }, + { + "type": "Spanish", + "title": "Assassination Classroom" + }, + { + "type": "French", + "title": "Assassination Classroom" + } + ], + "aliases": [ + "Ansatsu Kyoushitsu", + "Assassination Classroom", + "暗殺教室" + ], + "ids": { + "mal": 24833, + "jikan": 24833 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q50376961" + ], + "chinese_titles": [ + { + "title": "暗殺教室", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E6%9A%97%E6%AE%BA%E6%95%99%E5%AE%A4_(%E5%8B%95%E7%95%AB)", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + }, + { + "title": "暗殺教室 (動畫)", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E6%9A%97%E6%AE%BA%E6%95%99%E5%AE%A4_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium" + }, + { + "title": "暗殺教室", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q50376961", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "암살교실", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q50376961" + }, + { + "title": "암살교실", + "source": "Wikidata Korean label", + "url": "https://www.wikidata.org/wiki/Q50376961", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 20755, + "chinese_title": "暗殺教室 (動畫)", + "korean_title": "암살교실", + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "暗殺教室", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E6%9A%97%E6%AE%BA%E6%95%99%E5%AE%A4_(%E5%8B%95%E7%95%AB)", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "title_enrichment_notes": [ + "No Mainland China or Hong Kong/Macau-specific Chinese title found in the first pass." + ], + "chinese_title_cn": null, + "chinese_title_hk_mo": null, + "chinese_title_tw": "暗殺教室" + }, + { + "type": "anime", + "mal_id": 23755, + "url": "https://myanimelist.net/anime/23755/Nanatsu_no_Taizai", + "rank": 1830, + "popularity": 33, + "score": 7.6, + "members": 2212586, + "year": 2014, + "default_title": "Nanatsu no Taizai", + "english_title": "The Seven Deadly Sins", + "cjk_title": "七つの大罪", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "七つの大罪" + ], + "latin_titles": [ + "Nanatsu no Taizai", + "The Seven Deadly Sins", + "The Seven Deadly Sins", + "The Seven Deadly Sins" + ], + "titles": [ + { + "type": "Default", + "title": "Nanatsu no Taizai" + }, + { + "type": "Japanese", + "title": "七つの大罪" + }, + { + "type": "English", + "title": "The Seven Deadly Sins" + }, + { + "type": "German", + "title": "The Seven Deadly Sins" + }, + { + "type": "French", + "title": "The Seven Deadly Sins" + } + ], + "aliases": [ + "Nanatsu no Taizai", + "The Seven Deadly Sins", + "七つの大罪" + ], + "ids": { + "mal": 23755, + "jikan": 23755 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q63093010" + ], + "anilist_id": 20789, + "chinese_titles": [ + { + "title": "七大罪", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "七大罪", + "source": "Wikidata Chinese label", + "url": "https://www.wikidata.org/wiki/Q9048543", + "confidence": "medium", + "region": "zh_cn", + "note": "General Chinese label; source does not explicitly distinguish Mainland China." + }, + { + "title": "七大罪", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q9048543", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "七大罪", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "七大罪", + "korean_title": "일곱 개의 대죄", + "chinese_titles_cn": [ + { + "title": "七大罪", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "七大罪", + "source": "Wikidata Chinese label", + "url": "https://www.wikidata.org/wiki/Q9048543", + "confidence": "medium", + "region": "zh_cn", + "note": "General Chinese label; source does not explicitly distinguish Mainland China." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "七大罪", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q9048543", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "일곱 개의 대죄", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EC%9D%BC%EA%B3%B1_%EA%B0%9C%EC%9D%98_%EB%8C%80%EC%A3%84_(%EB%A7%8C%ED%99%94)", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ], + "chinese_title_cn": "七大罪", + "chinese_title_hk_mo": null, + "chinese_title_tw": "七大罪" + }, + { + "type": "anime", + "mal_id": 269, + "url": "https://myanimelist.net/anime/269/Bleach", + "rank": 766, + "popularity": 34, + "score": 7.99, + "members": 2210377, + "year": 2004, + "default_title": "Bleach", + "english_title": "Bleach", + "cjk_title": "BLEACH - ブリーチ -", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "BLEACH - ブリーチ -" + ], + "latin_titles": [ + "Bleach", + "Bleach" + ], + "titles": [ + { + "type": "Default", + "title": "Bleach" + }, + { + "type": "Japanese", + "title": "BLEACH - ブリーチ -" + }, + { + "type": "English", + "title": "Bleach" + } + ], + "aliases": [ + "Bleach", + "BLEACH - ブリーチ -" + ], + "ids": { + "mal": 269, + "jikan": 269 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q5362638" + ], + "chinese_titles": [ + { + "title": "死神", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "BLEACH 漂靈", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "BLEACH 死神", + "source": "Wikidata zh-hant label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese label; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + }, + { + "title": "BLEACH (動畫)", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/BLEACH_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium" + }, + { + "title": "死神", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "medium" + }, + { + "title": "BLEACH 境·界", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "medium" + }, + { + "title": "BLEACH 漂靈", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "medium" + }, + { + "title": "BLEACH 死神", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "medium" + }, + { + "title": "BLEACH", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "블리치 (애니메이션)", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EB%B8%94%EB%A6%AC%EC%B9%98_%28%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98%29" + }, + { + "title": "블리치", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q5362638" + }, + { + "title": "블리치", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EB%B8%94%EB%A6%AC%EC%B9%98_(%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98)", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 269, + "chinese_title": "BLEACH (動畫)", + "korean_title": "블리치 (애니메이션)", + "chinese_titles_cn": [ + { + "title": "死神", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "BLEACH 漂靈", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "BLEACH 死神", + "source": "Wikidata zh-hant label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese label; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "死神", + "chinese_title_hk_mo": "BLEACH 漂靈", + "chinese_title_tw": "BLEACH 死神" + }, + { + "type": "anime", + "mal_id": 6547, + "url": "https://myanimelist.net/anime/6547/Angel_Beats", + "rank": 672, + "popularity": 35, + "score": 8.05, + "members": 2202945, + "year": 2010, + "default_title": "Angel Beats!", + "english_title": "Angel Beats!", + "cjk_title": "Angel Beats!(エンジェルビーツ!)", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "Angel Beats!(エンジェルビーツ!)" + ], + "latin_titles": [ + "Angel Beats!", + "Angel Beats!" + ], + "titles": [ + { + "type": "Default", + "title": "Angel Beats!" + }, + { + "type": "Japanese", + "title": "Angel Beats!(エンジェルビーツ!)" + }, + { + "type": "English", + "title": "Angel Beats!" + } + ], + "aliases": [ + "Angel Beats!", + "Angel Beats!(エンジェルビーツ!)" + ], + "ids": { + "mal": 6547, + "jikan": 6547 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q531552" + ], + "chinese_titles": [ + { + "title": "Angel Beats!", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q531552", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "Angel Beats!", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q531552", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "Angel Beats!", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/Angel_Beats%21", + "confidence": "medium" + }, + { + "title": "Angel beats", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q531552", + "confidence": "medium" + }, + { + "title": "Angel Beats", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q531552", + "confidence": "medium" + }, + { + "title": "天使的心跳", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q531552", + "confidence": "medium" + }, + { + "title": "天使的脈動", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q531552", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "엔젤 비트", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EC%97%94%EC%A0%A4_%EB%B9%84%ED%8A%B8" + }, + { + "title": "Angel Beats!", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q531552" + }, + { + "title": "앤젤 비츠", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q531552" + }, + { + "title": "앤젤 비츠!", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q531552" + }, + { + "title": "에인절 비츠!", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q531552" + }, + { + "title": "엔젤 비츠", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q531552" + }, + { + "title": "엔젤 비츠!", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q531552" + }, + { + "title": "엔젤비츠", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q531552" + }, + { + "title": "엔젤비트", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q531552" + }, + { + "title": "엔젤 비트", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EC%97%94%EC%A0%A4_%EB%B9%84%ED%8A%B8", + "confidence": "high", + "region": "ko" + }, + { + "title": "엔젤 비츠!", + "source": "Wikidata Korean alternate label", + "url": "https://www.wikidata.org/wiki/Q531552", + "confidence": "medium", + "region": "ko" + } + ], + "anilist_id": 6547, + "chinese_title": "Angel Beats!", + "korean_title": "엔젤 비트", + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [ + { + "title": "Angel Beats!", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q531552", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "Angel Beats!", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q531552", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [ + "No Mainland China-specific Chinese title found in the first pass." + ], + "chinese_title_cn": null, + "chinese_title_hk_mo": "Angel Beats!", + "chinese_title_tw": "Angel Beats!" + }, + { + "type": "anime", + "mal_id": 20583, + "url": "https://myanimelist.net/anime/20583/Haikyuu", + "rank": 201, + "popularity": 36, + "score": 8.43, + "members": 2175778, + "year": 2014, + "default_title": "Haikyuu!!", + "english_title": "Haikyu!!", + "cjk_title": "ハイキュー!!", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ハイキュー!!" + ], + "latin_titles": [ + "Haikyuu!!", + "High Kyuu!!", + "HQ!!", + "Haikyu!!", + "Haikyu!!", + "Haikyu!! Los Ases del Vóley", + "Haikyu!!" + ], + "titles": [ + { + "type": "Default", + "title": "Haikyuu!!" + }, + { + "type": "Synonym", + "title": "High Kyuu!!" + }, + { + "type": "Synonym", + "title": "HQ!!" + }, + { + "type": "Japanese", + "title": "ハイキュー!!" + }, + { + "type": "English", + "title": "Haikyu!!" + }, + { + "type": "German", + "title": "Haikyu!!" + }, + { + "type": "Spanish", + "title": "Haikyu!! Los Ases del Vóley" + }, + { + "type": "French", + "title": "Haikyu!!" + } + ], + "aliases": [ + "Haikyuu!!", + "Haikyu!!", + "ハイキュー!!", + "High Kyuu!!", + "HQ!!", + "Haikyu!! Los Ases del Vóley" + ], + "ids": { + "mal": 20583, + "jikan": 20583 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q97182002" + ], + "anilist_id": 20464, + "chinese_titles": [ + { + "title": "排球少年!!", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "排球少年!!", + "source": "Wikidata zh-cn/zh-hans label", + "url": "https://www.wikidata.org/wiki/Q326642", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "排球少年!!", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q326642", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "排球少年!!", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q326642", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "排球少年!!", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "排球少年!!", + "korean_title": "하이큐!!", + "chinese_titles_cn": [ + { + "title": "排球少年!!", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "排球少年!!", + "source": "Wikidata zh-cn/zh-hans label", + "url": "https://www.wikidata.org/wiki/Q326642", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "排球少年!!", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q326642", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "排球少年!!", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q326642", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "하이큐!!", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%ED%95%98%EC%9D%B4%ED%81%90!!", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "排球少年!!", + "chinese_title_hk_mo": "排球少年!!", + "chinese_title_tw": "排球少年!!" + }, + { + "type": "anime", + "mal_id": 37779, + "url": "https://myanimelist.net/anime/37779/Yakusoku_no_Neverland", + "rank": 183, + "popularity": 37, + "score": 8.47, + "members": 2156756, + "year": 2019, + "default_title": "Yakusoku no Neverland", + "english_title": "The Promised Neverland", + "cjk_title": "約束のネバーランド", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "約束のネバーランド" + ], + "latin_titles": [ + "Yakusoku no Neverland", + "The Promised Neverland", + "The Promised Neverland", + "The Promised Neverland", + "The Promised Neverland" + ], + "titles": [ + { + "type": "Default", + "title": "Yakusoku no Neverland" + }, + { + "type": "Japanese", + "title": "約束のネバーランド" + }, + { + "type": "English", + "title": "The Promised Neverland" + }, + { + "type": "German", + "title": "The Promised Neverland" + }, + { + "type": "Spanish", + "title": "The Promised Neverland" + }, + { + "type": "French", + "title": "The Promised Neverland" + } + ], + "aliases": [ + "Yakusoku no Neverland", + "The Promised Neverland", + "約束のネバーランド" + ], + "ids": { + "mal": 37779, + "jikan": 37779 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q97354628" + ], + "anilist_id": 101759, + "chinese_titles": [ + { + "title": "约定的梦幻岛", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "約定的夢幻島", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "约定的梦幻岛", + "source": "AniList synonym", + "url": "https://anilist.co/anime/101759", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + }, + { + "title": "約定的夢幻島", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E7%B4%84%E5%AE%9A%E7%9A%84%E5%A4%A2%E5%B9%BB%E5%B3%B6", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + }, + { + "title": "约定的梦幻岛", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + }, + { + "title": "約定的夢幻島", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "约定的梦幻岛", + "korean_title": "약속의 네버랜드", + "chinese_titles_cn": [ + { + "title": "约定的梦幻岛", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "約定的夢幻島", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "约定的梦幻岛", + "source": "AniList synonym", + "url": "https://anilist.co/anime/101759", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "約定的夢幻島", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E7%B4%84%E5%AE%9A%E7%9A%84%E5%A4%A2%E5%B9%BB%E5%B3%B6", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "korean_titles": [ + { + "title": "약속의 네버랜드", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EC%95%BD%EC%86%8D%EC%9D%98_%EB%84%A4%EB%B2%84%EB%9E%9C%EB%93%9C", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ], + "chinese_title_cn": "约定的梦幻岛", + "chinese_title_hk_mo": null, + "chinese_title_tw": "約定的夢幻島" + }, + { + "type": "anime", + "mal_id": 30831, + "url": "https://myanimelist.net/anime/30831/Kono_Subarashii_Sekai_ni_Shukufuku_wo", + "rank": 619, + "popularity": 38, + "score": 8.09, + "members": 2153919, + "year": 2016, + "default_title": "Kono Subarashii Sekai ni Shukufuku wo!", + "english_title": "KonoSuba: God's Blessing on This Wonderful World!", + "cjk_title": "この素晴らしい世界に祝福を!", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "この素晴らしい世界に祝福を!" + ], + "latin_titles": [ + "Kono Subarashii Sekai ni Shukufuku wo!", + "Give Blessings to This Wonderful World!", + "KonoSuba: God's Blessing on This Wonderful World!", + "KonoSuba: God's Blessing on This Wonderful World!", + "KonoSuba: God's blessing on this wonderful world!", + "KonoSuba: God's Blessing on This Wonderful World!" + ], + "titles": [ + { + "type": "Default", + "title": "Kono Subarashii Sekai ni Shukufuku wo!" + }, + { + "type": "Synonym", + "title": "Give Blessings to This Wonderful World!" + }, + { + "type": "Japanese", + "title": "この素晴らしい世界に祝福を!" + }, + { + "type": "English", + "title": "KonoSuba: God's Blessing on This Wonderful World!" + }, + { + "type": "German", + "title": "KonoSuba: God's Blessing on This Wonderful World!" + }, + { + "type": "Spanish", + "title": "KonoSuba: God's blessing on this wonderful world!" + }, + { + "type": "French", + "title": "KonoSuba: God's Blessing on This Wonderful World!" + } + ], + "aliases": [ + "Kono Subarashii Sekai ni Shukufuku wo!", + "KonoSuba: God's Blessing on This Wonderful World!", + "この素晴らしい世界に祝福を!", + "Give Blessings to This Wonderful World!", + "KonoSuba: God's blessing on this wonderful world!" + ], + "ids": { + "mal": 30831, + "jikan": 30831 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q112171594" + ], + "chinese_titles": [ + { + "title": "为美好的世界献上祝福!", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "为美好的世界献上祝福!", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21202", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + }, + { + "title": "為美好的世界獻上祝福!", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q19750843", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "為美好的世界獻上祝福!", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q112171594", + "confidence": "medium" + }, + { + "title": "为美好的世界献上祝福!", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "anilist_id": 21202, + "chinese_title": "為美好的世界獻上祝福!", + "korean_title": "이 멋진 세계에 축복을!", + "chinese_titles_cn": [ + { + "title": "为美好的世界献上祝福!", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "为美好的世界献上祝福!", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21202", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "為美好的世界獻上祝福!", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q19750843", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "이 멋진 세계에 축복을!", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EC%9D%B4_%EB%A9%8B%EC%A7%84_%EC%84%B8%EA%B3%84%EC%97%90_%EC%B6%95%EB%B3%B5%EC%9D%84!", + "confidence": "high", + "region": "ko" + }, + { + "title": "코노스바", + "source": "Wikidata Korean alternate label", + "url": "https://www.wikidata.org/wiki/Q19750843", + "confidence": "medium", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ], + "chinese_title_cn": "为美好的世界献上祝福!", + "chinese_title_hk_mo": null, + "chinese_title_tw": "為美好的世界獻上祝福!" + }, + { + "type": "anime", + "mal_id": 10620, + "url": "https://myanimelist.net/anime/10620/Mirai_Nikki_TV", + "rank": 2866, + "popularity": 39, + "score": 7.38, + "members": 2138601, + "year": 2011, + "default_title": "Mirai Nikki (TV)", + "english_title": "The Future Diary", + "cjk_title": "未来日記", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "未来日記" + ], + "latin_titles": [ + "Mirai Nikki (TV)", + "Mirai Nikki", + "Mirai Nikki (2011)", + "The Future Diary", + "The Future Diary" + ], + "titles": [ + { + "type": "Default", + "title": "Mirai Nikki (TV)" + }, + { + "type": "Synonym", + "title": "Mirai Nikki" + }, + { + "type": "Synonym", + "title": "Mirai Nikki (2011)" + }, + { + "type": "Japanese", + "title": "未来日記" + }, + { + "type": "English", + "title": "The Future Diary" + }, + { + "type": "Spanish", + "title": "The Future Diary" + } + ], + "aliases": [ + "Mirai Nikki (TV)", + "The Future Diary", + "未来日記", + "Mirai Nikki", + "Mirai Nikki (2011)" + ], + "ids": { + "mal": 10620, + "jikan": 10620 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q62034895" + ], + "chinese_titles": [ + { + "title": "未来日记", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q62034895", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "未來日記", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q62034895", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "未來日記", + "source": "Wikidata zh-hant label", + "url": "https://www.wikidata.org/wiki/Q62034895", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese label; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + }, + { + "title": "未來日記", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q62034895", + "confidence": "medium" + }, + { + "title": "未来日记", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q62034895", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "미래일기", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q62034895" + }, + { + "title": "미래일기", + "source": "Wikidata Korean label", + "url": "https://www.wikidata.org/wiki/Q62034895", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 10620, + "chinese_title": "未來日記", + "korean_title": "미래일기", + "chinese_titles_cn": [ + { + "title": "未来日记", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q62034895", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "未來日記", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q62034895", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "未來日記", + "source": "Wikidata zh-hant label", + "url": "https://www.wikidata.org/wiki/Q62034895", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese label; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "未来日记", + "chinese_title_hk_mo": "未來日記", + "chinese_title_tw": "未來日記" + }, + { + "type": "anime", + "mal_id": 21881, + "url": "https://myanimelist.net/anime/21881/Sword_Art_Online_II", + "rank": 6875, + "popularity": 40, + "score": 6.72, + "members": 2114296, + "year": 2014, + "default_title": "Sword Art Online II", + "english_title": "Sword Art Online II", + "cjk_title": "ソードアート・オンライン II", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ソードアート・オンライン II" + ], + "latin_titles": [ + "Sword Art Online II", + "Phantom Bullet", + "SAO II", + "Sword Art Online 2", + "SAO 2", + "Sword Art Online II", + "Sword Art Online Ⅱ" + ], + "titles": [ + { + "type": "Default", + "title": "Sword Art Online II" + }, + { + "type": "Synonym", + "title": "Phantom Bullet" + }, + { + "type": "Synonym", + "title": "SAO II" + }, + { + "type": "Synonym", + "title": "Sword Art Online 2" + }, + { + "type": "Synonym", + "title": "SAO 2" + }, + { + "type": "Japanese", + "title": "ソードアート・オンライン II" + }, + { + "type": "English", + "title": "Sword Art Online II" + }, + { + "type": "French", + "title": "Sword Art Online Ⅱ" + } + ], + "aliases": [ + "Sword Art Online II", + "ソードアート・オンライン II", + "Phantom Bullet", + "SAO II", + "Sword Art Online 2", + "SAO 2", + "Sword Art Online Ⅱ" + ], + "ids": { + "mal": 21881, + "jikan": 21881 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "season/part/number marker", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q132174430" + ], + "anilist_id": 20594, + "chinese_title": null, + "korean_title": "소드 아트 온라인 II", + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "刀劍神域 II", + "source": "Bahamut Anime Crazy", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=916", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "刀劍神域Ⅱ", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%88%80%E5%8A%8D%E7%A5%9E%E5%9F%9F_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese animation page title for the second season." + } + ], + "korean_titles": [ + { + "title": "소드 아트 온라인 II", + "source": "Libre Wiki", + "url": "https://librewiki.net/wiki/%EC%86%8C%EB%93%9C_%EC%95%84%ED%8A%B8_%EC%98%A8%EB%9D%BC%EC%9D%B8_II", + "confidence": "high", + "region": "ko" + }, + { + "title": "소드 아트 온라인 II", + "source": "Gaon Wiki", + "url": "https://www.gaonwiki.com/w/%EC%86%8C%EB%93%9C_%EC%95%84%ED%8A%B8_%EC%98%A8%EB%9D%BC%EC%9D%B8/%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No Mainland China, Hong Kong/Macau, or Korean source-backed title was recorded in this first pass." + ], + "chinese_titles": [ + { + "title": "刀劍神域 II", + "source": "Bahamut Anime Crazy", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=916", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "刀劍神域Ⅱ", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%88%80%E5%8A%8D%E7%A5%9E%E5%9F%9F_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese animation page title for the second season." + } + ], + "chinese_title_cn": null, + "chinese_title_hk_mo": null, + "chinese_title_tw": "刀劍神域 II" + }, + { + "type": "anime", + "mal_id": 1, + "url": "https://myanimelist.net/anime/1/Cowboy_Bebop", + "rank": 49, + "popularity": 41, + "score": 8.75, + "members": 2058681, + "year": 1998, + "default_title": "Cowboy Bebop", + "english_title": "Cowboy Bebop", + "cjk_title": "カウボーイビバップ", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "カウボーイビバップ" + ], + "latin_titles": [ + "Cowboy Bebop", + "Cowboy Bebop" + ], + "titles": [ + { + "type": "Default", + "title": "Cowboy Bebop" + }, + { + "type": "Japanese", + "title": "カウボーイビバップ" + }, + { + "type": "English", + "title": "Cowboy Bebop" + } + ], + "aliases": [ + "Cowboy Bebop", + "カウボーイビバップ" + ], + "ids": { + "mal": 1, + "jikan": 1 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q101244908" + ], + "chinese_titles": [ + { + "title": "星際牛仔", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E6%98%9F%E9%9A%9B%E7%89%9B%E4%BB%94", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + }, + { + "title": "星際牛仔", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E6%98%9F%E9%9A%9B%E7%89%9B%E4%BB%94", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "카우보이 비밥", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EC%B9%B4%EC%9A%B0%EB%B3%B4%EC%9D%B4_%EB%B9%84%EB%B0%A5" + }, + { + "title": "카우보이 비밥", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EC%B9%B4%EC%9A%B0%EB%B3%B4%EC%9D%B4_%EB%B9%84%EB%B0%A5", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 1, + "chinese_title": "星際牛仔", + "korean_title": "카우보이 비밥", + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "星際牛仔", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E6%98%9F%E9%9A%9B%E7%89%9B%E4%BB%94", + "confidence": "medium", + "region": "zh_tw", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "title_enrichment_notes": [ + "No Mainland China or Hong Kong/Macau-specific Chinese title found in the first pass." + ], + "chinese_title_cn": null, + "chinese_title_hk_mo": null, + "chinese_title_tw": "星際牛仔" + }, + { + "type": "anime", + "mal_id": 9919, + "url": "https://myanimelist.net/anime/9919/Ao_no_Exorcist", + "rank": 2387, + "popularity": 42, + "score": 7.47, + "members": 2055268, + "year": 2011, + "default_title": "Ao no Exorcist", + "english_title": "Blue Exorcist", + "cjk_title": "青の祓魔師", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "青の祓魔師" + ], + "latin_titles": [ + "Ao no Exorcist", + "Ao no Futsumashi", + "Blue Exorcist", + "Blue Exorcist", + "Blue Exorcist", + "Blue Exorcist" + ], + "titles": [ + { + "type": "Default", + "title": "Ao no Exorcist" + }, + { + "type": "Synonym", + "title": "Ao no Futsumashi" + }, + { + "type": "Japanese", + "title": "青の祓魔師" + }, + { + "type": "English", + "title": "Blue Exorcist" + }, + { + "type": "German", + "title": "Blue Exorcist" + }, + { + "type": "Spanish", + "title": "Blue Exorcist" + }, + { + "type": "French", + "title": "Blue Exorcist" + } + ], + "aliases": [ + "Ao no Exorcist", + "Blue Exorcist", + "青の祓魔師", + "Ao no Futsumashi" + ], + "ids": { + "mal": 9919, + "jikan": 9919 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q104785188" + ], + "chinese_titles": [ + { + "title": "青之驱魔师", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q495919", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "青之祓魔師", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q495919", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "青之驅魔師", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q495919", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "青之驅魔師", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q104785188", + "confidence": "medium" + } + ], + "anilist_id": 9919, + "chinese_title": "青之驅魔師", + "korean_title": "청의 엑소시스트", + "chinese_titles_cn": [ + { + "title": "青之驱魔师", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q495919", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "青之祓魔師", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q495919", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "青之驅魔師", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q495919", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "청의 엑소시스트", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EC%B2%AD%EC%9D%98_%EC%97%91%EC%86%8C%EC%8B%9C%EC%8A%A4%ED%8A%B8", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "青之驱魔师", + "chinese_title_hk_mo": "青之祓魔師", + "chinese_title_tw": "青之驅魔師" + }, + { + "type": "anime", + "mal_id": 22535, + "url": "https://myanimelist.net/anime/22535/Kiseijuu__Sei_no_Kakuritsu", + "rank": 308, + "popularity": 43, + "score": 8.32, + "members": 2042369, + "year": 2014, + "default_title": "Kiseijuu: Sei no Kakuritsu", + "english_title": "Parasyte: The Maxim", + "cjk_title": "寄生獣 セイの格率", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "寄生獣 セイの格率" + ], + "latin_titles": [ + "Kiseijuu: Sei no Kakuritsu", + "Parasite", + "Parasitic Beasts", + "Parasyte", + "Parasyte: The Maxim", + "Parasyte -the maxim-", + "Parasyte -the maxim-", + "Parasite -la maxime-" + ], + "titles": [ + { + "type": "Default", + "title": "Kiseijuu: Sei no Kakuritsu" + }, + { + "type": "Synonym", + "title": "Parasite" + }, + { + "type": "Synonym", + "title": "Parasitic Beasts" + }, + { + "type": "Synonym", + "title": "Parasyte" + }, + { + "type": "Japanese", + "title": "寄生獣 セイの格率" + }, + { + "type": "English", + "title": "Parasyte: The Maxim" + }, + { + "type": "German", + "title": "Parasyte -the maxim-" + }, + { + "type": "Spanish", + "title": "Parasyte -the maxim-" + }, + { + "type": "French", + "title": "Parasite -la maxime-" + } + ], + "aliases": [ + "Kiseijuu: Sei no Kakuritsu", + "Parasyte: The Maxim", + "寄生獣 セイの格率", + "Parasite", + "Parasitic Beasts", + "Parasyte", + "Parasyte -the maxim-", + "Parasite -la maxime-" + ], + "ids": { + "mal": 22535, + "jikan": 22535 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q137808011" + ], + "chinese_titles": [ + { + "title": "寄生兽 生命的准则", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/88433", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "寄生獸 生命的準則", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q137808011", + "confidence": "medium" + } + ], + "anilist_id": 20623, + "chinese_title": "寄生獸 生命的準則", + "korean_title": "기생수 세이의 격률", + "chinese_titles_cn": [ + { + "title": "寄生兽 生命的准则", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/88433", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "기생수 세이의 격률", + "source": "Namu Wiki article title", + "url": "https://namu.moe/w/%EA%B8%B0%EC%83%9D%EC%88%98%20%EC%84%B8%EC%9D%B4%EC%9D%98%20%EA%B2%A9%EB%A5%A0", + "confidence": "medium", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ], + "chinese_title_cn": "寄生兽 生命的准则", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 30, + "url": "https://myanimelist.net/anime/30/Shinseiki_Evangelion", + "rank": 261, + "popularity": 44, + "score": 8.37, + "members": 2031267, + "year": 1995, + "default_title": "Shinseiki Evangelion", + "english_title": "Neon Genesis Evangelion", + "cjk_title": "新世紀エヴァンゲリオン", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "新世紀エヴァンゲリオン" + ], + "latin_titles": [ + "Shinseiki Evangelion", + "NGE", + "Evangelion (1995)", + "Neon Genesis Evangelion" + ], + "titles": [ + { + "type": "Default", + "title": "Shinseiki Evangelion" + }, + { + "type": "Synonym", + "title": "NGE" + }, + { + "type": "Synonym", + "title": "Evangelion (1995)" + }, + { + "type": "Japanese", + "title": "新世紀エヴァンゲリオン" + }, + { + "type": "English", + "title": "Neon Genesis Evangelion" + } + ], + "aliases": [ + "Shinseiki Evangelion", + "Neon Genesis Evangelion", + "新世紀エヴァンゲリオン", + "NGE", + "Evangelion (1995)" + ], + "ids": { + "mal": 30, + "jikan": 30 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q662" + ], + "chinese_titles": [ + { + "title": "新世纪福音战士", + "source": "Chinese Wikipedia article title", + "url": "https://zh.wikipedia.org/wiki/%E6%96%B0%E4%B8%96%E7%BA%AA%E7%A6%8F%E9%9F%B3%E6%88%98%E5%A3%AB", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "新世纪福音战士", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E6%96%B0%E4%B8%96%E7%BA%AA%E7%A6%8F%E9%9F%B3%E6%88%98%E5%A3%AB", + "confidence": "medium" + }, + { + "title": "新世紀福音戰士", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q662", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "신세기 에반게리온", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EC%8B%A0%EC%84%B8%EA%B8%B0_%EC%97%90%EB%B0%98%EA%B2%8C%EB%A6%AC%EC%98%A8" + }, + { + "title": "에반게리온", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q662" + }, + { + "title": "신세기 에반게리온", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EC%8B%A0%EC%84%B8%EA%B8%B0_%EC%97%90%EB%B0%98%EA%B2%8C%EB%A6%AC%EC%98%A8", + "confidence": "high", + "region": "ko" + }, + { + "title": "에반게리온", + "source": "Wikidata ko alt label", + "url": "https://www.wikidata.org/wiki/Q662", + "confidence": "medium", + "region": "ko" + } + ], + "anilist_id": 30, + "chinese_title": "新世纪福音战士", + "korean_title": "신세기 에반게리온", + "chinese_titles_cn": [ + { + "title": "新世纪福音战士", + "source": "Chinese Wikipedia article title", + "url": "https://zh.wikipedia.org/wiki/%E6%96%B0%E4%B8%96%E7%BA%AA%E7%A6%8F%E9%9F%B3%E6%88%98%E5%A3%AB", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ], + "chinese_title_cn": "新世纪福音战士", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 199, + "url": "https://myanimelist.net/anime/199/Sen_to_Chihiro_no_Kamikakushi", + "rank": 45, + "popularity": 45, + "score": 8.77, + "members": 2030544, + "year": null, + "default_title": "Sen to Chihiro no Kamikakushi", + "english_title": "Spirited Away", + "cjk_title": "千と千尋の神隠し", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "千と千尋の神隠し" + ], + "latin_titles": [ + "Sen to Chihiro no Kamikakushi", + "Sen and Chihiro's Spiriting Away", + "Spirited Away", + "Chihiros Reise ins Zauberland", + "El viaje de Chihiro", + "Le Voyage de Chihiro" + ], + "titles": [ + { + "type": "Default", + "title": "Sen to Chihiro no Kamikakushi" + }, + { + "type": "Synonym", + "title": "Sen and Chihiro's Spiriting Away" + }, + { + "type": "Japanese", + "title": "千と千尋の神隠し" + }, + { + "type": "English", + "title": "Spirited Away" + }, + { + "type": "German", + "title": "Chihiros Reise ins Zauberland" + }, + { + "type": "Spanish", + "title": "El viaje de Chihiro" + }, + { + "type": "French", + "title": "Le Voyage de Chihiro" + } + ], + "aliases": [ + "Sen to Chihiro no Kamikakushi", + "Spirited Away", + "千と千尋の神隠し", + "Sen and Chihiro's Spiriting Away", + "Chihiros Reise ins Zauberland", + "El viaje de Chihiro", + "Le Voyage de Chihiro" + ], + "ids": { + "mal": 199, + "jikan": 199 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q155653" + ], + "chinese_titles": [ + { + "title": "千与千寻", + "source": "Wikidata zh-CN label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "千与千寻的神隐", + "source": "Wikidata zh alt label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "千與千尋", + "source": "Wikidata zh-HK/zh-MO label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "神隱少女", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "千与千寻", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E5%8D%83%E4%B8%8E%E5%8D%83%E5%AF%BB", + "confidence": "medium" + }, + { + "title": "神隱少女", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "medium" + }, + { + "title": "千与千寻的神隐", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "medium" + }, + { + "title": "千與千尋", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "medium" + }, + { + "title": "千與千尋的神隱", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "medium" + }, + { + "title": "神隐少女", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "센과 치히로의 행방불명", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EC%84%BC%EA%B3%BC_%EC%B9%98%ED%9E%88%EB%A1%9C%EC%9D%98_%ED%96%89%EB%B0%A9%EB%B6%88%EB%AA%85" + }, + { + "title": "센과치히로의행방불명", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q155653" + }, + { + "title": "센과 치히로의 행방불명", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EC%84%BC%EA%B3%BC_%EC%B9%98%ED%9E%88%EB%A1%9C%EC%9D%98_%ED%96%89%EB%B0%A9%EB%B6%88%EB%AA%85", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 199, + "chinese_title": "千与千寻", + "korean_title": "센과 치히로의 행방불명", + "chinese_titles_cn": [ + { + "title": "千与千寻", + "source": "Wikidata zh-CN label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "千与千寻的神隐", + "source": "Wikidata zh alt label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "千與千尋", + "source": "Wikidata zh-HK/zh-MO label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "神隱少女", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "千与千寻", + "chinese_title_hk_mo": "千與千尋", + "chinese_title_tw": "神隱少女" + }, + { + "type": "anime", + "mal_id": 33352, + "url": "https://myanimelist.net/anime/33352/Violet_Evergarden", + "rank": 75, + "popularity": 46, + "score": 8.69, + "members": 1999853, + "year": 2018, + "default_title": "Violet Evergarden", + "english_title": "Violet Evergarden", + "cjk_title": "ヴァイオレット・エヴァーガーデン", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ヴァイオレット・エヴァーガーデン" + ], + "latin_titles": [ + "Violet Evergarden", + "Violet Evergarden" + ], + "titles": [ + { + "type": "Default", + "title": "Violet Evergarden" + }, + { + "type": "Japanese", + "title": "ヴァイオレット・エヴァーガーデン" + }, + { + "type": "English", + "title": "Violet Evergarden" + } + ], + "aliases": [ + "Violet Evergarden", + "ヴァイオレット・エヴァーガーデン" + ], + "ids": { + "mal": 33352, + "jikan": 33352 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q57390937" + ], + "anilist_id": 21827, + "chinese_titles": [ + { + "title": "紫罗兰永恒花园", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "紫罗兰永恒花园", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/183878", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "紫罗兰永恒花园", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21827", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "紫罗兰永恒花园", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "紫罗兰永恒花园", + "korean_title": "바이올렛 에버가든", + "chinese_titles_cn": [ + { + "title": "紫罗兰永恒花园", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "紫罗兰永恒花园", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/183878", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "紫罗兰永恒花园", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21827", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "바이올렛 에버가든", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EB%B0%94%EC%9D%B4%EC%98%AC%EB%A0%9B_%EC%97%90%EB%B2%84%EA%B0%80%EB%93%A0", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ], + "chinese_title_cn": "紫罗兰永恒花园", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 44511, + "url": "https://myanimelist.net/anime/44511/Chainsaw_Man", + "rank": 200, + "popularity": 47, + "score": 8.43, + "members": 1969245, + "year": 2022, + "default_title": "Chainsaw Man", + "english_title": "Chainsaw Man", + "cjk_title": "チェンソーマン", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "チェンソーマン" + ], + "latin_titles": [ + "Chainsaw Man", + "CSM", + "Chainsaw Man" + ], + "titles": [ + { + "type": "Default", + "title": "Chainsaw Man" + }, + { + "type": "Synonym", + "title": "CSM" + }, + { + "type": "Japanese", + "title": "チェンソーマン" + }, + { + "type": "English", + "title": "Chainsaw Man" + } + ], + "aliases": [ + "Chainsaw Man", + "チェンソーマン", + "CSM" + ], + "ids": { + "mal": 44511, + "jikan": 44511 + }, + "complexity_reasons": [ + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q104211858" + ], + "chinese_titles": [ + { + "title": "链锯人", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "链锯人", + "source": "AniList synonym", + "url": "https://anilist.co/anime/127230", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "鏈鋸人", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q104211858", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "鏈鋸人 (動畫)", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E9%8F%88%E9%8B%B8%E4%BA%BA_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium" + }, + { + "title": "鏈鋸人", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q104211858", + "confidence": "medium" + }, + { + "title": "链锯人", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "체인소 맨 (애니메이션)", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EC%B2%B4%EC%9D%B8%EC%86%8C_%EB%A7%A8_%28%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98%29" + }, + { + "title": "체인소 맨", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q104211858" + }, + { + "title": "체인소맨", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q104211858" + }, + { + "title": "체인소 맨", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EC%B2%B4%EC%9D%B8%EC%86%8C_%EB%A7%A8_(%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98)", + "confidence": "high", + "region": "ko" + }, + { + "title": "체인소맨", + "source": "Wikidata ko alt label", + "url": "https://www.wikidata.org/wiki/Q104211858", + "confidence": "medium", + "region": "ko" + } + ], + "anilist_id": 127230, + "chinese_title": "鏈鋸人 (動畫)", + "korean_title": "체인소 맨 (애니메이션)", + "chinese_titles_cn": [ + { + "title": "链锯人", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "链锯人", + "source": "AniList synonym", + "url": "https://anilist.co/anime/127230", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "鏈鋸人", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q104211858", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau regional title was found in the first pass." + ], + "chinese_title_cn": "链锯人", + "chinese_title_hk_mo": null, + "chinese_title_tw": "鏈鋸人" + }, + { + "type": "anime", + "mal_id": 37450, + "url": "https://myanimelist.net/anime/37450/Seishun_Buta_Yarou_wa_Bunny_Girl_Senpai_no_Yume_wo_Minai", + "rank": 415, + "popularity": 48, + "score": 8.23, + "members": 1962936, + "year": 2018, + "default_title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "english_title": "Rascal Does Not Dream of Bunny Girl Senpai", + "cjk_title": "青春ブタ野郎はバニーガール先輩の夢を見ない", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "青春ブタ野郎はバニーガール先輩の夢を見ない" + ], + "latin_titles": [ + "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "AoButa", + "Rascal Does Not Dream of Bunny Girl Senpai", + "Rascal Dpes Not Dream Of Bunny Girl Senpai", + "Rascal does not Dream of Bunny Girl Senpai (Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai)", + "Rascal does not Dream of Bunny Girl Senpai (Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai)" + ], + "titles": [ + { + "type": "Default", + "title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai" + }, + { + "type": "Synonym", + "title": "AoButa" + }, + { + "type": "Japanese", + "title": "青春ブタ野郎はバニーガール先輩の夢を見ない" + }, + { + "type": "English", + "title": "Rascal Does Not Dream of Bunny Girl Senpai" + }, + { + "type": "German", + "title": "Rascal Dpes Not Dream Of Bunny Girl Senpai" + }, + { + "type": "Spanish", + "title": "Rascal does not Dream of Bunny Girl Senpai (Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai)" + }, + { + "type": "French", + "title": "Rascal does not Dream of Bunny Girl Senpai (Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai)" + } + ], + "aliases": [ + "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "Rascal Does Not Dream of Bunny Girl Senpai", + "青春ブタ野郎はバニーガール先輩の夢を見ない", + "AoButa", + "Rascal Dpes Not Dream Of Bunny Girl Senpai", + "Rascal does not Dream of Bunny Girl Senpai (Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai)" + ], + "ids": { + "mal": 37450, + "jikan": 37450 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q63615353" + ], + "chinese_titles": [ + { + "title": "青春猪头少年不会梦到兔女郎学姐", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "青春猪头少年不会梦到兔女郎学姐", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/240038", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "青春猪头少年不会梦到兔女郎学姐", + "source": "AniList synonym", + "url": "https://anilist.co/anime/101291", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "青春豬頭少年不會夢到兔女郎學姊", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q63615353", + "confidence": "medium" + }, + { + "title": "青春猪头少年不会梦到兔女郎学姐", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "청춘 돼지는 바니걸 선배의 꿈을 꾸지 않는다", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q63615353" + }, + { + "title": "청춘 돼지는 바니걸 선배의 꿈을 꾸지 않는다", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q63615353", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 101291, + "chinese_title": "青春豬頭少年不會夢到兔女郎學姊", + "korean_title": "청춘 돼지는 바니걸 선배의 꿈을 꾸지 않는다", + "chinese_titles_cn": [ + { + "title": "青春猪头少年不会梦到兔女郎学姐", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "青春猪头少年不会梦到兔女郎学姐", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/240038", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "青春猪头少年不会梦到兔女郎学姐", + "source": "AniList synonym", + "url": "https://anilist.co/anime/101291", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ], + "chinese_title_cn": "青春猪头少年不会梦到兔女郎学姐", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 38691, + "url": "https://myanimelist.net/anime/38691/Dr_Stone", + "rank": 367, + "popularity": 49, + "score": 8.26, + "members": 1959692, + "year": 2019, + "default_title": "Dr. Stone", + "english_title": "Dr. Stone", + "cjk_title": "ドクターストーン", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ドクターストーン" + ], + "latin_titles": [ + "Dr. Stone", + "Dr. Stone" + ], + "titles": [ + { + "type": "Default", + "title": "Dr. Stone" + }, + { + "type": "Japanese", + "title": "ドクターストーン" + }, + { + "type": "English", + "title": "Dr. Stone" + } + ], + "aliases": [ + "Dr. Stone", + "ドクターストーン" + ], + "ids": { + "mal": 38691, + "jikan": 38691 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q96376597" + ], + "chinese_titles": [ + { + "title": "石纪元", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "石纪元", + "source": "AniList synonym", + "url": "https://anilist.co/anime/105333", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "Dr.STONE 新石紀 第一季", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q96376597", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "Dr.STONE 新石紀 第一季", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q96376597", + "confidence": "medium" + }, + { + "title": "石纪元", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "anilist_id": 105333, + "chinese_title": "Dr.STONE 新石紀 第一季", + "korean_title": "닥터 스톤", + "chinese_titles_cn": [ + { + "title": "石纪元", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "石纪元", + "source": "AniList synonym", + "url": "https://anilist.co/anime/105333", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "Dr.STONE 新石紀 第一季", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q96376597", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "닥터 스톤", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EB%8B%A5%ED%84%B0_%EC%8A%A4%ED%86%A4", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau regional title was found in the first pass." + ], + "chinese_title_cn": "石纪元", + "chinese_title_hk_mo": null, + "chinese_title_tw": "Dr.STONE 新石紀 第一季" + }, + { + "type": "anime", + "mal_id": 2904, + "url": "https://myanimelist.net/anime/2904/Code_Geass__Hangyaku_no_Lelouch_R2", + "rank": 21, + "popularity": 50, + "score": 8.92, + "members": 1957533, + "year": 2008, + "default_title": "Code Geass: Hangyaku no Lelouch R2", + "english_title": "Code Geass: Lelouch of the Rebellion R2", + "cjk_title": "コードギアス 反逆のルルーシュ R2", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "コードギアス 反逆のルルーシュ R2" + ], + "latin_titles": [ + "Code Geass: Hangyaku no Lelouch R2", + "Code Geass: Hangyaku no Lelouch 2nd Season", + "Code Geass: Hangyaku no Lelouch Second Season", + "Code Geass: Lelouch of the Rebellion R2", + "Code Geass: Lelouch of the Rebellion R2", + "Code Geass: Lelouch, el de la Rebelión R2", + "Code Geass: Lelouch of the Rebellion R2" + ], + "titles": [ + { + "type": "Default", + "title": "Code Geass: Hangyaku no Lelouch R2" + }, + { + "type": "Synonym", + "title": "Code Geass: Hangyaku no Lelouch 2nd Season" + }, + { + "type": "Synonym", + "title": "Code Geass: Hangyaku no Lelouch Second Season" + }, + { + "type": "Japanese", + "title": "コードギアス 反逆のルルーシュ R2" + }, + { + "type": "English", + "title": "Code Geass: Lelouch of the Rebellion R2" + }, + { + "type": "German", + "title": "Code Geass: Lelouch of the Rebellion R2" + }, + { + "type": "Spanish", + "title": "Code Geass: Lelouch, el de la Rebelión R2" + }, + { + "type": "French", + "title": "Code Geass: Lelouch of the Rebellion R2" + } + ], + "aliases": [ + "Code Geass: Hangyaku no Lelouch R2", + "Code Geass: Lelouch of the Rebellion R2", + "コードギアス 反逆のルルーシュ R2", + "Code Geass: Hangyaku no Lelouch 2nd Season", + "Code Geass: Hangyaku no Lelouch Second Season", + "Code Geass: Lelouch, el de la Rebelión R2" + ], + "ids": { + "mal": 2904, + "jikan": 2904 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:02Z", + "wikidata_ids": [ + "Q4384067" + ], + "chinese_titles": [ + { + "title": "Code Geass 反叛的鲁路修R2", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/8", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "叛逆的魯魯修", + "source": "Wikidata zh-HK label", + "url": "https://www.wikidata.org/wiki/Q4384067", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Label omits R2." + }, + { + "title": "Code Geass 反叛的魯路修", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q4384067", + "confidence": "medium", + "region": "zh_tw", + "note": "Label omits R2." + }, + { + "title": "Code Geass 反叛的魯路修", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", + "confidence": "medium" + }, + { + "title": "Code Geass反叛的魯路修", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q4384067", + "confidence": "medium" + }, + { + "title": "叛逆的魯魯修", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q4384067", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "코드 기어스 반역의 를르슈", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EC%BD%94%EB%93%9C_%EA%B8%B0%EC%96%B4%EC%8A%A4_%EB%B0%98%EC%97%AD%EC%9D%98_%EB%A5%BC%EB%A5%B4%EC%8A%88" + }, + { + "title": "코드 기아스 반역의 를르슈", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q4384067" + }, + { + "title": "코드 기아스 반역의 를르슈", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EC%BD%94%EB%93%9C_%EA%B8%B0%EC%96%B4%EC%8A%A4_%EB%B0%98%EC%97%AD%EC%9D%98_%EB%A5%BC%EB%A5%B4%EC%8A%88", + "confidence": "medium", + "region": "ko", + "note": "Series-level Korean title; page covers R2 but the title omits R2." + } + ], + "anilist_id": 2904, + "chinese_title": "Code Geass 反叛的魯路修", + "korean_title": "코드 기어스 반역의 를르슈", + "chinese_titles_cn": [ + { + "title": "Code Geass 反叛的鲁路修R2", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/8", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "叛逆的魯魯修", + "source": "Wikidata zh-HK label", + "url": "https://www.wikidata.org/wiki/Q4384067", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Label omits R2." + } + ], + "chinese_titles_tw": [ + { + "title": "Code Geass 反叛的魯路修", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q4384067", + "confidence": "medium", + "region": "zh_tw", + "note": "Label omits R2." + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "Code Geass 反叛的鲁路修R2", + "chinese_title_hk_mo": "叛逆的魯魯修", + "chinese_title_tw": "Code Geass 反叛的魯路修" + }, + { + "type": "anime", + "mal_id": 37999, + "url": "https://myanimelist.net/anime/37999/Kaguya-sama_wa_Kokurasetai__Tensai-tachi_no_Renai_Zunousen", + "rank": 231, + "popularity": 51, + "score": 8.4, + "members": 1942923, + "year": 2019, + "default_title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "english_title": "Kaguya-sama: Love is War", + "cjk_title": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "かぐや様は告らせたい~天才たちの恋愛頭脳戦~" + ], + "latin_titles": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", + "Kaguya-sama: Love is War", + "Kauya-sama: Love Is War", + "Kaguya-sama: Love is War", + "Kaguya-sama: Love is War" + ], + "titles": [ + { + "type": "Default", + "title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen" + }, + { + "type": "Synonym", + "title": "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains" + }, + { + "type": "Japanese", + "title": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~" + }, + { + "type": "English", + "title": "Kaguya-sama: Love is War" + }, + { + "type": "German", + "title": "Kauya-sama: Love Is War" + }, + { + "type": "Spanish", + "title": "Kaguya-sama: Love is War" + }, + { + "type": "French", + "title": "Kaguya-sama: Love is War" + } + ], + "aliases": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "Kaguya-sama: Love is War", + "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", + "Kauya-sama: Love Is War" + ], + "ids": { + "mal": 37999, + "jikan": 37999 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q102364866" + ], + "chinese_titles": [ + { + "title": "辉夜大小姐想让我告白~天才们的恋爱头脑战~", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "辉夜姬想让人告白", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "辉夜姬想让人告白~天才们的恋爱头脑战~", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "辉告", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "辉夜大小姐想让我告白~天才们的恋爱头脑战~", + "source": "AniList synonym", + "url": "https://anilist.co/anime/101921", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "辉夜姬想让人告白~天才们的恋爱头脑战~", + "source": "AniList synonym", + "url": "https://anilist.co/anime/101921", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "輝夜姬想讓人告白~天才們的戀愛頭腦戰~", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q102364866", + "confidence": "medium" + }, + { + "title": "辉夜大小姐想让我告白~天才们的恋爱头脑战~", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + }, + { + "title": "辉夜姬想让人告白", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + }, + { + "title": "辉夜姬想让人告白~天才们的恋爱头脑战~", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + }, + { + "title": "辉告", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "anilist_id": 101921, + "chinese_title": "輝夜姬想讓人告白~天才們的戀愛頭腦戰~", + "korean_title": "카구야 님은 고백받고 싶어 ~천재들의 연애 두뇌전~", + "chinese_titles_cn": [ + { + "title": "辉夜大小姐想让我告白~天才们的恋爱头脑战~", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "辉夜姬想让人告白", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "辉夜姬想让人告白~天才们的恋爱头脑战~", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "辉告", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "辉夜大小姐想让我告白~天才们的恋爱头脑战~", + "source": "AniList synonym", + "url": "https://anilist.co/anime/101921", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "辉夜姬想让人告白~天才们的恋爱头脑战~", + "source": "AniList synonym", + "url": "https://anilist.co/anime/101921", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "카구야 님은 고백받고 싶어 ~천재들의 연애 두뇌전~", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EC%B9%B4%EA%B5%AC%EC%95%BC_%EB%8B%98%EC%9D%80_%EA%B3%A0%EB%B0%B1%EB%B0%9B%EA%B3%A0_%EC%8B%B6%EC%96%B4", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ], + "chinese_title_cn": "辉夜大小姐想让我告白~天才们的恋爱头脑战~", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 28223, + "url": "https://myanimelist.net/anime/28223/Death_Parade", + "rank": 548, + "popularity": 52, + "score": 8.13, + "members": 1920151, + "year": 2015, + "default_title": "Death Parade", + "english_title": "Death Parade", + "cjk_title": "デス・パレード", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "デス・パレード" + ], + "latin_titles": [ + "Death Parade", + "Death Parade" + ], + "titles": [ + { + "type": "Default", + "title": "Death Parade" + }, + { + "type": "Japanese", + "title": "デス・パレード" + }, + { + "type": "English", + "title": "Death Parade" + } + ], + "aliases": [ + "Death Parade", + "デス・パレード" + ], + "ids": { + "mal": 28223, + "jikan": 28223 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q11320614" + ], + "chinese_titles": [ + { + "title": "死亡游行", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/116742", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "死亡遊行", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E6%AD%BB%E4%BA%A1%E9%81%8A%E8%A1%8C", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "데스 퍼레이드", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EB%8D%B0%EC%8A%A4_%ED%8D%BC%EB%A0%88%EC%9D%B4%EB%93%9C" + }, + { + "title": "데스 퍼레이드", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EB%8D%B0%EC%8A%A4_%ED%8D%BC%EB%A0%88%EC%9D%B4%EB%93%9C", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 20931, + "chinese_title": "死亡遊行", + "korean_title": "데스 퍼레이드", + "chinese_titles_cn": [ + { + "title": "死亡游行", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/116742", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ], + "chinese_title_cn": "死亡游行", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 38408, + "url": "https://myanimelist.net/anime/38408/Boku_no_Hero_Academia_4th_Season", + "rank": 1036, + "popularity": 53, + "score": 7.86, + "members": 1910660, + "year": 2019, + "default_title": "Boku no Hero Academia 4th Season", + "english_title": "My Hero Academia Season 4", + "cjk_title": "僕のヒーローアカデミア", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "僕のヒーローアカデミア" + ], + "latin_titles": [ + "Boku no Hero Academia 4th Season", + "My Hero Academia Season 4", + "My Hero Academia Staffel 4", + "My Hero Academia Temporada 4", + "My Hero Academia Saison 4" + ], + "titles": [ + { + "type": "Default", + "title": "Boku no Hero Academia 4th Season" + }, + { + "type": "Japanese", + "title": "僕のヒーローアカデミア" + }, + { + "type": "English", + "title": "My Hero Academia Season 4" + }, + { + "type": "German", + "title": "My Hero Academia Staffel 4" + }, + { + "type": "Spanish", + "title": "My Hero Academia Temporada 4" + }, + { + "type": "French", + "title": "My Hero Academia Saison 4" + } + ], + "aliases": [ + "Boku no Hero Academia 4th Season", + "My Hero Academia Season 4", + "僕のヒーローアカデミア", + "My Hero Academia Staffel 4", + "My Hero Academia Temporada 4", + "My Hero Academia Saison 4" + ], + "ids": { + "mal": 38408, + "jikan": 38408 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q70843112" + ], + "anilist_id": 104276, + "chinese_titles": [ + { + "title": "我的英雄学院 4", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学院第四季", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学院 第四季", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/262162", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "我的英雄学院第四季", + "source": "AniList synonym", + "url": "https://anilist.co/anime/104276", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学院 4", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + }, + { + "title": "我的英雄学院第四季", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "我的英雄学院 4", + "korean_title": "나의 히어로 아카데미아 4기", + "chinese_titles_cn": [ + { + "title": "我的英雄学院 4", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学院第四季", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的英雄学院 第四季", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/262162", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "我的英雄学院第四季", + "source": "AniList synonym", + "url": "https://anilist.co/anime/104276", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "나의 히어로 아카데미아 4기", + "source": "Korean Wikipedia series article", + "url": "https://ko.wikipedia.org/wiki/%EB%82%98%EC%9D%98_%ED%9E%88%EC%96%B4%EB%A1%9C_%EC%95%84%EC%B9%B4%EB%8D%B0%EB%AF%B8%EC%95%84", + "confidence": "medium", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ], + "chinese_title_cn": "我的英雄学院 4", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 34572, + "url": "https://myanimelist.net/anime/34572/Black_Clover", + "rank": 528, + "popularity": 54, + "score": 8.14, + "members": 1904780, + "year": 2017, + "default_title": "Black Clover", + "english_title": "Black Clover", + "cjk_title": "ブラッククローバー", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ブラッククローバー" + ], + "latin_titles": [ + "Black Clover", + "Black Clover" + ], + "titles": [ + { + "type": "Default", + "title": "Black Clover" + }, + { + "type": "Japanese", + "title": "ブラッククローバー" + }, + { + "type": "English", + "title": "Black Clover" + } + ], + "aliases": [ + "Black Clover", + "ブラッククローバー" + ], + "ids": { + "mal": 34572, + "jikan": 34572 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q70331950" + ], + "chinese_titles": [ + { + "title": "黑色五叶草", + "source": "Wikidata zh-CN label", + "url": "https://www.wikidata.org/wiki/Q70331950", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "黑色五叶草", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/202880", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "黑色五葉草", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q70331950", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "黑色五葉草 (動畫)", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E9%BB%91%E8%89%B2%E4%BA%94%E8%91%89%E8%8D%89_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium" + }, + { + "title": "黑色五葉草", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q70331950", + "confidence": "medium" + }, + { + "title": "黑色五叶草", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q70331950", + "confidence": "medium" + } + ], + "anilist_id": 97940, + "chinese_title": "黑色五葉草 (動畫)", + "korean_title": "블랙 클로버", + "chinese_titles_cn": [ + { + "title": "黑色五叶草", + "source": "Wikidata zh-CN label", + "url": "https://www.wikidata.org/wiki/Q70331950", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "黑色五叶草", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/202880", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "黑色五葉草", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q70331950", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "블랙 클로버", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EB%B8%94%EB%9E%99_%ED%81%B4%EB%A1%9C%EB%B2%84", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau regional title was found in the first pass." + ], + "chinese_title_cn": "黑色五叶草", + "chinese_title_hk_mo": null, + "chinese_title_tw": "黑色五葉草" + }, + { + "type": "anime", + "mal_id": 27899, + "url": "https://myanimelist.net/anime/27899/Tokyo_Ghoul_√A", + "rank": 5053, + "popularity": 55, + "score": 7.03, + "members": 1900491, + "year": 2015, + "default_title": "Tokyo Ghoul √A", + "english_title": "Tokyo Ghoul √A", + "cjk_title": "東京喰種√A", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "東京喰種√A" + ], + "latin_titles": [ + "Tokyo Ghoul √A", + "Tokyo Ghoul Root A", + "Tokyo Ghoul 2nd Season", + "Tokyo Ghoul Second Season", + "Tokyo Ghoul √A" + ], + "titles": [ + { + "type": "Default", + "title": "Tokyo Ghoul √A" + }, + { + "type": "Synonym", + "title": "Tokyo Ghoul Root A" + }, + { + "type": "Synonym", + "title": "Tokyo Ghoul 2nd Season" + }, + { + "type": "Synonym", + "title": "Tokyo Ghoul Second Season" + }, + { + "type": "Japanese", + "title": "東京喰種√A" + }, + { + "type": "English", + "title": "Tokyo Ghoul √A" + } + ], + "aliases": [ + "Tokyo Ghoul √A", + "東京喰種√A", + "Tokyo Ghoul Root A", + "Tokyo Ghoul 2nd Season", + "Tokyo Ghoul Second Season" + ], + "ids": { + "mal": 27899, + "jikan": 27899 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "anilist_id": 20850, + "chinese_title": null, + "korean_title": "도쿄 구울 √A", + "chinese_titles_cn": [ + { + "title": "东京喰种√A", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/115292", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "도쿄 구울 √A", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EB%8F%84%EC%BF%84_%EA%B5%AC%EC%9A%B8", + "confidence": "medium", + "region": "ko", + "note": "Series article covers the √A anime season." + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ], + "chinese_titles": [ + { + "title": "东京喰种√A", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/115292", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_title_cn": "东京喰种√A", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 34134, + "url": "https://myanimelist.net/anime/34134/One_Punch_Man_2nd_Season", + "rank": 2134, + "popularity": 57, + "score": 7.53, + "members": 1885592, + "year": 2019, + "default_title": "One Punch Man 2nd Season", + "english_title": "One-Punch Man Season 2", + "cjk_title": "ワンパンマン 2期", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "ワンパンマン 2期" + ], + "latin_titles": [ + "One Punch Man 2nd Season", + "One Punch-Man 2", + "One-Punch Man 2", + "OPM 2", + "One-Punch Man Season 2", + "One Punch Man Staffel 2", + "One Punch Man Temporada 2", + "One Punch Man Saison 2" + ], + "titles": [ + { + "type": "Default", + "title": "One Punch Man 2nd Season" + }, + { + "type": "Synonym", + "title": "One Punch-Man 2" + }, + { + "type": "Synonym", + "title": "One-Punch Man 2" + }, + { + "type": "Synonym", + "title": "OPM 2" + }, + { + "type": "Japanese", + "title": "ワンパンマン 2期" + }, + { + "type": "English", + "title": "One-Punch Man Season 2" + }, + { + "type": "German", + "title": "One Punch Man Staffel 2" + }, + { + "type": "Spanish", + "title": "One Punch Man Temporada 2" + }, + { + "type": "French", + "title": "One Punch Man Saison 2" + } + ], + "aliases": [ + "One Punch Man 2nd Season", + "One-Punch Man Season 2", + "ワンパンマン 2期", + "One Punch-Man 2", + "One-Punch Man 2", + "OPM 2", + "One Punch Man Staffel 2", + "One Punch Man Temporada 2", + "One Punch Man Saison 2" + ], + "ids": { + "mal": 34134, + "jikan": 34134 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q105081766" + ], + "chinese_titles": [ + { + "title": "一拳超人 第二季", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/193619", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "一拳超人 第二季", + "source": "AniList synonym", + "url": "https://anilist.co/anime/97668", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "一拳超人 第二季", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q105081766", + "confidence": "medium" + } + ], + "anilist_id": 97668, + "chinese_title": "一拳超人 第二季", + "korean_title": "원펀맨 2기", + "chinese_titles_cn": [ + { + "title": "一拳超人 第二季", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/193619", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "一拳超人 第二季", + "source": "AniList synonym", + "url": "https://anilist.co/anime/97668", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "원펀맨 2기", + "source": "Korean Wikipedia series article", + "url": "https://ko.wikipedia.org/wiki/%EC%9B%90%ED%8E%80%EB%A7%A8", + "confidence": "medium", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ], + "chinese_title_cn": "一拳超人 第二季", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 14719, + "url": "https://myanimelist.net/anime/14719/JoJo_no_Kimyou_na_Bouken_TV", + "rank": 1019, + "popularity": 58, + "score": 7.87, + "members": 1863613, + "year": 2012, + "default_title": "JoJo no Kimyou na Bouken (TV)", + "english_title": "JoJo's Bizarre Adventure (2012)", + "cjk_title": "ジョジョの奇妙な冒険", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "ジョジョの奇妙な冒険" + ], + "latin_titles": [ + "JoJo no Kimyou na Bouken (TV)", + "JoJo no Kimyou na Bouken (2012)", + "Battle Tendency", + "Phantom Blood", + "Sentou Chouryuu", + "JoJo's Bizarre Adventure The Animation", + "JoJo's Bizarre Adventure (2012)", + "JoJo's Bizarre Adventure: Phantom Blood", + "JoJo's Bizarre Adventure. Phantom Blood", + "JoJo's Bizarre Adventure" + ], + "titles": [ + { + "type": "Default", + "title": "JoJo no Kimyou na Bouken (TV)" + }, + { + "type": "Synonym", + "title": "JoJo no Kimyou na Bouken (2012)" + }, + { + "type": "Synonym", + "title": "Battle Tendency" + }, + { + "type": "Synonym", + "title": "Phantom Blood" + }, + { + "type": "Synonym", + "title": "Sentou Chouryuu" + }, + { + "type": "Synonym", + "title": "JoJo's Bizarre Adventure The Animation" + }, + { + "type": "Japanese", + "title": "ジョジョの奇妙な冒険" + }, + { + "type": "English", + "title": "JoJo's Bizarre Adventure (2012)" + }, + { + "type": "German", + "title": "JoJo's Bizarre Adventure: Phantom Blood" + }, + { + "type": "Spanish", + "title": "JoJo's Bizarre Adventure. Phantom Blood" + }, + { + "type": "French", + "title": "JoJo's Bizarre Adventure" + } + ], + "aliases": [ + "JoJo no Kimyou na Bouken (TV)", + "JoJo's Bizarre Adventure (2012)", + "ジョジョの奇妙な冒険", + "JoJo no Kimyou na Bouken (2012)", + "Battle Tendency", + "Phantom Blood", + "Sentou Chouryuu", + "JoJo's Bizarre Adventure The Animation", + "JoJo's Bizarre Adventure: Phantom Blood", + "JoJo's Bizarre Adventure. Phantom Blood", + "JoJo's Bizarre Adventure" + ], + "ids": { + "mal": 14719, + "jikan": 14719 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q17053197" + ], + "anilist_id": 14719, + "chinese_title": null, + "korean_title": "죠죠의 기묘한 모험", + "chinese_titles_cn": [ + { + "title": "JOJO的奇妙冒险", + "source": "Chinese Wikipedia article title", + "url": "https://zh.wikipedia.org/wiki/JoJo%E7%9A%84%E5%A5%87%E5%A6%99%E5%86%92%E9%9A%AA", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "죠죠의 기묘한 모험", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EC%A3%A0%EC%A3%A0%EC%9D%98_%EA%B8%B0%EB%AC%98%ED%95%9C_%EB%AA%A8%ED%97%98", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ], + "chinese_titles": [ + { + "title": "JOJO的奇妙冒险", + "source": "Chinese Wikipedia article title", + "url": "https://zh.wikipedia.org/wiki/JoJo%E7%9A%84%E5%A5%87%E5%A6%99%E5%86%92%E9%9A%AA", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_title_cn": "JOJO的奇妙冒险", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 18679, + "url": "https://myanimelist.net/anime/18679/Kill_la_Kill", + "rank": 716, + "popularity": 59, + "score": 8.03, + "members": 1850270, + "year": 2013, + "default_title": "Kill la Kill", + "english_title": "Kill la Kill", + "cjk_title": "キルラキル", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "キルラキル" + ], + "latin_titles": [ + "Kill la Kill", + "KLK", + "Dressed to Kill", + "Kill la Kill", + "KILL la KILL", + "KILL la KILL", + "KILL la KILL" + ], + "titles": [ + { + "type": "Default", + "title": "Kill la Kill" + }, + { + "type": "Synonym", + "title": "KLK" + }, + { + "type": "Synonym", + "title": "Dressed to Kill" + }, + { + "type": "Japanese", + "title": "キルラキル" + }, + { + "type": "English", + "title": "Kill la Kill" + }, + { + "type": "German", + "title": "KILL la KILL" + }, + { + "type": "Spanish", + "title": "KILL la KILL" + }, + { + "type": "French", + "title": "KILL la KILL" + } + ], + "aliases": [ + "Kill la Kill", + "キルラキル", + "KLK", + "Dressed to Kill", + "KILL la KILL" + ], + "ids": { + "mal": 18679, + "jikan": 18679 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q13637192" + ], + "chinese_titles": [ + { + "title": "斩服少女", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/72941", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "KILL la KILL", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/KILL_la_KILL", + "confidence": "medium" + }, + { + "title": "斩服少女", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q13637192", + "confidence": "medium" + }, + { + "title": "斬服少女", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q13637192", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "킬라킬", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%ED%82%AC%EB%9D%BC%ED%82%AC" + }, + { + "title": "킬라킬", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%ED%82%AC%EB%9D%BC%ED%82%AC", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 18679, + "chinese_title": "KILL la KILL", + "korean_title": "킬라킬", + "chinese_titles_cn": [ + { + "title": "斩服少女", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/72941", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ], + "chinese_title_cn": "斩服少女", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 6702, + "url": "https://myanimelist.net/anime/6702/Fairy_Tail", + "rank": 1942, + "popularity": 60, + "score": 7.57, + "members": 1847047, + "year": 2009, + "default_title": "Fairy Tail", + "english_title": "Fairy Tail", + "cjk_title": "FAIRY TAIL(フェアリーテイル)", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "FAIRY TAIL(フェアリーテイル)" + ], + "latin_titles": [ + "Fairy Tail", + "Fairy Tail" + ], + "titles": [ + { + "type": "Default", + "title": "Fairy Tail" + }, + { + "type": "Japanese", + "title": "FAIRY TAIL(フェアリーテイル)" + }, + { + "type": "English", + "title": "Fairy Tail" + } + ], + "aliases": [ + "Fairy Tail", + "FAIRY TAIL(フェアリーテイル)" + ], + "ids": { + "mal": 6702, + "jikan": 6702 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q16510277" + ], + "chinese_titles": [ + { + "title": "妖精的尾巴", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "妖精的尾巴", + "source": "AniList synonym", + "url": "https://anilist.co/anime/6702", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "FAIRY TAIL (動畫)", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/FAIRY_TAIL_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium" + }, + { + "title": "FAIRY TAIL", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q16510277", + "confidence": "medium" + }, + { + "title": "妖精的尾巴", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "페어리 테일", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q16510277" + }, + { + "title": "페어리 테일", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%ED%8E%98%EC%96%B4%EB%A6%AC_%ED%85%8C%EC%9D%BC", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 6702, + "chinese_title": "FAIRY TAIL (動畫)", + "korean_title": "페어리 테일", + "chinese_titles_cn": [ + { + "title": "妖精的尾巴", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "妖精的尾巴", + "source": "AniList synonym", + "url": "https://anilist.co/anime/6702", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ], + "chinese_title_cn": "妖精的尾巴", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 37521, + "url": "https://myanimelist.net/anime/37521/Vinland_Saga", + "rank": 43, + "popularity": 61, + "score": 8.78, + "members": 1824799, + "year": 2019, + "default_title": "Vinland Saga", + "english_title": null, + "cjk_title": "ヴィンランド・サガ", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ヴィンランド・サガ" + ], + "latin_titles": [ + "Vinland Saga" + ], + "titles": [ + { + "type": "Default", + "title": "Vinland Saga" + }, + { + "type": "Japanese", + "title": "ヴィンランド・サガ" + } + ], + "aliases": [ + "Vinland Saga", + "ヴィンランド・サガ" + ], + "ids": { + "mal": 37521, + "jikan": 37521 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q111677557" + ], + "chinese_titles": [ + { + "title": "冰海战记", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/240386", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "海盜戰記", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q111677557", + "confidence": "medium" + }, + { + "title": "冰海战记", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q111677557", + "confidence": "medium" + } + ], + "anilist_id": 101348, + "chinese_title": "海盜戰記", + "korean_title": "빈란드 사가", + "chinese_titles_cn": [ + { + "title": "冰海战记", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/240386", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "빈란드 사가", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EB%B9%88%EB%9E%80%EB%93%9C_%EC%82%AC%EA%B0%80", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ], + "chinese_title_cn": "冰海战记", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 35849, + "url": "https://myanimelist.net/anime/35849/Darling_in_the_FranXX", + "rank": 3989, + "popularity": 62, + "score": 7.2, + "members": 1817549, + "year": 2018, + "default_title": "Darling in the FranXX", + "english_title": "DARLING in the FRANXX", + "cjk_title": "ダーリン・イン・ザ・フランキス", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ダーリン・イン・ザ・フランキス" + ], + "latin_titles": [ + "Darling in the FranXX", + "DARLING in the FRANXX", + "Darling in the Franxx", + "Darling in The FranXX" + ], + "titles": [ + { + "type": "Default", + "title": "Darling in the FranXX" + }, + { + "type": "Japanese", + "title": "ダーリン・イン・ザ・フランキス" + }, + { + "type": "English", + "title": "DARLING in the FRANXX" + }, + { + "type": "German", + "title": "Darling in the Franxx" + }, + { + "type": "Spanish", + "title": "Darling in The FranXX" + } + ], + "aliases": [ + "Darling in the FranXX", + "DARLING in the FRANXX", + "ダーリン・イン・ザ・フランキス", + "Darling in the Franxx", + "Darling in The FranXX" + ], + "ids": { + "mal": 35849, + "jikan": 35849 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q36498848" + ], + "chinese_titles": [ + { + "title": "DARLING in the FRANXX", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/218711", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "情迷弗兰克斯", + "source": "Wikidata zh alt label", + "url": "https://www.wikidata.org/wiki/Q36498848", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese alternate label; not region-tagged." + }, + { + "title": "DARLING in the FRANXX", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/DARLING_in_the_FRANXX", + "confidence": "medium" + }, + { + "title": "情迷弗兰克斯", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q36498848", + "confidence": "medium" + }, + { + "title": "比翼之吻", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q36498848", + "confidence": "medium" + }, + { + "title": "親愛的弗蘭克斯 DARLING in the FRANXX", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q36498848", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "달링 인 더 프랑키스", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EB%8B%AC%EB%A7%81_%EC%9D%B8_%EB%8D%94_%ED%94%84%EB%9E%91%ED%82%A4%EC%8A%A4" + }, + { + "title": "달링 인 더 프랑키스", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EB%8B%AC%EB%A7%81_%EC%9D%B8_%EB%8D%94_%ED%94%84%EB%9E%91%ED%82%A4%EC%8A%A4", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 99423, + "chinese_title": "DARLING in the FRANXX", + "korean_title": "달링 인 더 프랑키스", + "chinese_titles_cn": [ + { + "title": "DARLING in the FRANXX", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/218711", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "情迷弗兰克斯", + "source": "Wikidata zh alt label", + "url": "https://www.wikidata.org/wiki/Q36498848", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese alternate label; not region-tagged." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ], + "chinese_title_cn": "DARLING in the FRANXX", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 11111, + "url": "https://myanimelist.net/anime/11111/Another", + "rank": 2444, + "popularity": 63, + "score": 7.46, + "members": 1786559, + "year": 2012, + "default_title": "Another", + "english_title": "Another", + "cjk_title": "アナザー", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "アナザー" + ], + "latin_titles": [ + "Another", + "Another" + ], + "titles": [ + { + "type": "Default", + "title": "Another" + }, + { + "type": "Japanese", + "title": "アナザー" + }, + { + "type": "English", + "title": "Another" + } + ], + "aliases": [ + "Another", + "アナザー" + ], + "ids": { + "mal": 11111, + "jikan": 11111 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q127786483" + ], + "anilist_id": 11111, + "chinese_title": null, + "korean_title": "어나더", + "chinese_titles_cn": [ + { + "title": "替身", + "source": "Douban subject title", + "url": "https://movie.douban.com/subject/5392222/", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "어나더", + "source": "Namu Wiki article title", + "url": "https://namu.moe/w/Another(%EC%86%8C%EC%84%A4)", + "confidence": "medium", + "region": "ko", + "note": "Series-level Korean article; the anime adaptation uses the same title." + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ], + "chinese_titles": [ + { + "title": "替身", + "source": "Douban subject title", + "url": "https://movie.douban.com/subject/5392222/", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_title_cn": "替身", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 40456, + "url": "https://myanimelist.net/anime/40456/Kimetsu_no_Yaiba_Movie__Mugen_Ressha-hen", + "rank": 144, + "popularity": 64, + "score": 8.54, + "members": 1780174, + "year": null, + "default_title": "Kimetsu no Yaiba Movie: Mugen Ressha-hen", + "english_title": "Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train", + "cjk_title": "劇場版 鬼滅の刃 無限列車編", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "劇場版 鬼滅の刃 無限列車編" + ], + "latin_titles": [ + "Kimetsu no Yaiba Movie: Mugen Ressha-hen", + "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", + "Kimetsu no Yaiba: Infinity Train", + "Demon Slayer Movie: Infinity Train", + "Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train", + "Guardianes De La Noche - Kimetsu No Yaiba - Tren Infinito", + "Demon Slayer - Kimetsu no Yaiba - Le film : Le train de l'Infini" + ], + "titles": [ + { + "type": "Default", + "title": "Kimetsu no Yaiba Movie: Mugen Ressha-hen" + }, + { + "type": "Synonym", + "title": "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen" + }, + { + "type": "Synonym", + "title": "Kimetsu no Yaiba: Infinity Train" + }, + { + "type": "Synonym", + "title": "Demon Slayer Movie: Infinity Train" + }, + { + "type": "Japanese", + "title": "劇場版 鬼滅の刃 無限列車編" + }, + { + "type": "English", + "title": "Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train" + }, + { + "type": "Spanish", + "title": "Guardianes De La Noche - Kimetsu No Yaiba - Tren Infinito" + }, + { + "type": "French", + "title": "Demon Slayer - Kimetsu no Yaiba - Le film : Le train de l'Infini" + } + ], + "aliases": [ + "Kimetsu no Yaiba Movie: Mugen Ressha-hen", + "Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train", + "劇場版 鬼滅の刃 無限列車編", + "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", + "Kimetsu no Yaiba: Infinity Train", + "Demon Slayer Movie: Infinity Train", + "Guardianes De La Noche - Kimetsu No Yaiba - Tren Infinito", + "Demon Slayer - Kimetsu no Yaiba - Le film : Le train de l'Infini" + ], + "ids": { + "mal": 40456, + "jikan": 40456 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q96376192" + ], + "chinese_titles": [ + { + "title": "鬼灭之刃:无限列车篇", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "鬼滅之刃劇場版 無限列車篇", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鬼滅之刃劇場版_無限列車篇", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Muse Communication distribution for Hong Kong and Macau." + }, + { + "title": "鬼滅之刃劇場版 無限列車篇", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鬼滅之刃劇場版_無限列車篇", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists the Taiwan release and Muse Communication Taiwan distribution." + }, + { + "title": "鬼滅之刃劇場版 無限列車篇", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E9%AC%BC%E6%BB%85%E4%B9%8B%E5%88%83%E5%8A%87%E5%A0%B4%E7%89%88_%E7%84%A1%E9%99%90%E5%88%97%E8%BB%8A%E7%AF%87", + "confidence": "medium" + }, + { + "title": "鬼灭之刃:无限列车篇", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "극장판 귀멸의 칼날: 무한열차편", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EA%B7%B9%EC%9E%A5%ED%8C%90_%EA%B7%80%EB%A9%B8%EC%9D%98_%EC%B9%BC%EB%82%A0%3A_%EB%AC%B4%ED%95%9C%EC%97%B4%EC%B0%A8%ED%8E%B8" + }, + { + "title": "극장판 귀멸의 칼날 무한열차 편", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q96376192" + }, + { + "title": "극장판 귀멸의 칼날: 무한열차편", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/극장판_귀멸의_칼날:_무한열차편", + "confidence": "high", + "region": "ko" + }, + { + "title": "극장판 귀멸의 칼날 무한열차 편", + "source": "Wikidata", + "url": "https://www.wikidata.org/wiki/Q96376192", + "confidence": "medium", + "region": "ko" + } + ], + "anilist_id": 112151, + "chinese_title": "鬼滅之刃劇場版 無限列車篇", + "korean_title": "극장판 귀멸의 칼날: 무한열차편", + "chinese_titles_cn": [ + { + "title": "鬼灭之刃:无限列车篇", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "鬼滅之刃劇場版 無限列車篇", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鬼滅之刃劇場版_無限列車篇", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Muse Communication distribution for Hong Kong and Macau." + } + ], + "chinese_titles_tw": [ + { + "title": "鬼滅之刃劇場版 無限列車篇", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鬼滅之刃劇場版_無限列車篇", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists the Taiwan release and Muse Communication Taiwan distribution." + } + ], + "title_enrichment_notes": [ + "No source-backed Mainland China regional title was found; the simplified AniList synonym is kept only in the union list." + ], + "chinese_title_cn": "鬼灭之刃:无限列车篇", + "chinese_title_hk_mo": "鬼滅之刃劇場版 無限列車篇", + "chinese_title_tw": "鬼滅之刃劇場版 無限列車篇" + }, + { + "type": "anime", + "mal_id": 3588, + "url": "https://myanimelist.net/anime/3588/Soul_Eater", + "rank": 1052, + "popularity": 65, + "score": 7.86, + "members": 1773491, + "year": 2008, + "default_title": "Soul Eater", + "english_title": "Soul Eater", + "cjk_title": "ソウルイーター", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ソウルイーター" + ], + "latin_titles": [ + "Soul Eater", + "Soul Eater" + ], + "titles": [ + { + "type": "Default", + "title": "Soul Eater" + }, + { + "type": "Japanese", + "title": "ソウルイーター" + }, + { + "type": "English", + "title": "Soul Eater" + } + ], + "aliases": [ + "Soul Eater", + "ソウルイーター" + ], + "ids": { + "mal": 3588, + "jikan": 3588 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q18553975" + ], + "chinese_titles": [ + { + "title": "噬魂者", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q18553975", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "소울 이터", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q18553975" + }, + { + "title": "소울 이터", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/소울_이터", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 3588, + "chinese_title": "噬魂者", + "korean_title": "소울 이터", + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "title_enrichment_notes": [ + "Chinese sources found do not distinguish Mainland China, Hong Kong/Macau, or Taiwan title variants." + ], + "chinese_title_cn": null, + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 2001, + "url": "https://myanimelist.net/anime/2001/Tengen_Toppa_Gurren_Lagann", + "rank": 92, + "popularity": 66, + "score": 8.64, + "members": 1769583, + "year": 2007, + "default_title": "Tengen Toppa Gurren Lagann", + "english_title": "Gurren Lagann", + "cjk_title": "天元突破グレンラガン", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "天元突破グレンラガン" + ], + "latin_titles": [ + "Tengen Toppa Gurren Lagann", + "Tengen Toppa Gurren-Lagann", + "Making Break-Through Gurren Lagann", + "Heavenly Breakthrough Gurren Lagann", + "TTGL", + "Gurren Laggan", + "Gurren Lagann", + "Gurren Lagann", + "Gurren Lagann", + "Gurren Lagann" + ], + "titles": [ + { + "type": "Default", + "title": "Tengen Toppa Gurren Lagann" + }, + { + "type": "Synonym", + "title": "Tengen Toppa Gurren-Lagann" + }, + { + "type": "Synonym", + "title": "Making Break-Through Gurren Lagann" + }, + { + "type": "Synonym", + "title": "Heavenly Breakthrough Gurren Lagann" + }, + { + "type": "Synonym", + "title": "TTGL" + }, + { + "type": "Synonym", + "title": "Gurren Laggan" + }, + { + "type": "Japanese", + "title": "天元突破グレンラガン" + }, + { + "type": "English", + "title": "Gurren Lagann" + }, + { + "type": "German", + "title": "Gurren Lagann" + }, + { + "type": "Spanish", + "title": "Gurren Lagann" + }, + { + "type": "French", + "title": "Gurren Lagann" + } + ], + "aliases": [ + "Tengen Toppa Gurren Lagann", + "Gurren Lagann", + "天元突破グレンラガン", + "Tengen Toppa Gurren-Lagann", + "Making Break-Through Gurren Lagann", + "Heavenly Breakthrough Gurren Lagann", + "TTGL", + "Gurren Laggan" + ], + "ids": { + "mal": 2001, + "jikan": 2001 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q4277" + ], + "chinese_titles": [ + { + "title": "天元突破 紅蓮螺巖", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/天元突破_紅蓮螺巖", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page describes Hong Kong broadcast under this article title." + }, + { + "title": "天元突破 紅蓮螺巖", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/天元突破_紅蓮螺巖", + "confidence": "high", + "region": "zh_tw", + "note": "The page describes Taiwan broadcast under this article title." + }, + { + "title": "天元突破 紅蓮螺巖", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E5%A4%A9%E5%85%83%E7%AA%81%E7%A0%B4_%E7%B4%85%E8%93%AE%E8%9E%BA%E5%B7%96", + "confidence": "medium" + }, + { + "title": "天元突破", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q4277", + "confidence": "medium" + }, + { + "title": "天元突破 グレンラガン", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q4277", + "confidence": "medium" + }, + { + "title": "天元突破 愚連裸顏", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q4277", + "confidence": "medium" + }, + { + "title": "天元突破 紅蓮之眼", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q4277", + "confidence": "medium" + }, + { + "title": "天元突破 红莲螺巌", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q4277", + "confidence": "medium" + }, + { + "title": "天元突破グレンラガン", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q4277", + "confidence": "medium" + }, + { + "title": "天元突破グレンラガン 俺のグレンはピッカピカ!!", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q4277", + "confidence": "medium" + }, + { + "title": "天元突破紅蓮螺巖譯名", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q4277", + "confidence": "medium" + }, + { + "title": "天元突破红莲螺岩", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q4277", + "confidence": "medium" + }, + { + "title": "天元突破紅蓮螺巖", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q4277", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "천원돌파 그렌라간", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EC%B2%9C%EC%9B%90%EB%8F%8C%ED%8C%8C_%EA%B7%B8%EB%A0%8C%EB%9D%BC%EA%B0%84" + }, + { + "title": "그렌라간", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q4277" + }, + { + "title": "천원돌파 그렌라간", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/천원돌파_그렌라간", + "confidence": "high", + "region": "ko" + }, + { + "title": "그렌라간", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q4277", + "confidence": "medium", + "region": "ko" + } + ], + "anilist_id": 2001, + "chinese_title": "天元突破 紅蓮螺巖", + "korean_title": "천원돌파 그렌라간", + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [ + { + "title": "天元突破 紅蓮螺巖", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/天元突破_紅蓮螺巖", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page describes Hong Kong broadcast under this article title." + } + ], + "chinese_titles_tw": [ + { + "title": "天元突破 紅蓮螺巖", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/天元突破_紅蓮螺巖", + "confidence": "high", + "region": "zh_tw", + "note": "The page describes Taiwan broadcast under this article title." + } + ], + "title_enrichment_notes": [ + "No source-backed Mainland China regional title was found; the simplified Wikidata alt label is kept only in the union list." + ], + "chinese_title_cn": null, + "chinese_title_hk_mo": "天元突破 紅蓮螺巖", + "chinese_title_tw": "天元突破 紅蓮螺巖" + }, + { + "type": "anime", + "mal_id": 35790, + "url": "https://myanimelist.net/anime/35790/Tate_no_Yuusha_no_Nariagari", + "rank": 956, + "popularity": 67, + "score": 7.9, + "members": 1768608, + "year": 2019, + "default_title": "Tate no Yuusha no Nariagari", + "english_title": "The Rising of the Shield Hero", + "cjk_title": "盾の勇者の成り上がり", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "盾の勇者の成り上がり" + ], + "latin_titles": [ + "Tate no Yuusha no Nariagari", + "The Rising of the Shield Hero", + "The Rising of the Shield Hero", + "The Rising of the Shield Hero", + "The Rising of the Shield Hero" + ], + "titles": [ + { + "type": "Default", + "title": "Tate no Yuusha no Nariagari" + }, + { + "type": "Japanese", + "title": "盾の勇者の成り上がり" + }, + { + "type": "English", + "title": "The Rising of the Shield Hero" + }, + { + "type": "German", + "title": "The Rising of the Shield Hero" + }, + { + "type": "Spanish", + "title": "The Rising of the Shield Hero" + }, + { + "type": "French", + "title": "The Rising of the Shield Hero" + } + ], + "aliases": [ + "Tate no Yuusha no Nariagari", + "The Rising of the Shield Hero", + "盾の勇者の成り上がり" + ], + "ids": { + "mal": 35790, + "jikan": 35790 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q110896842" + ], + "chinese_titles": [ + { + "title": "盾之勇者成名录", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "盾之勇者成名录", + "source": "AniList synonym", + "url": "https://anilist.co/anime/99263", + "confidence": "medium", + "region": "zh_cn", + "note": "Used as a simplified Chinese title; no separate official Mainland distributor source was found." + }, + { + "title": "盾之勇者成名錄", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/盾之勇者成名錄", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Taiwan/Hong Kong publishing under this title." + }, + { + "title": "盾之勇者成名錄", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/盾之勇者成名錄", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists Taiwan/Hong Kong publishing under this title." + }, + { + "title": "盾之勇者成名錄", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q110896842", + "confidence": "medium" + }, + { + "title": "盾之勇者成名录", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "anilist_id": 99263, + "chinese_title": "盾之勇者成名錄", + "korean_title": "방패 용사 성공담", + "chinese_titles_cn": [ + { + "title": "盾之勇者成名录", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "盾之勇者成名录", + "source": "AniList synonym", + "url": "https://anilist.co/anime/99263", + "confidence": "medium", + "region": "zh_cn", + "note": "Used as a simplified Chinese title; no separate official Mainland distributor source was found." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "盾之勇者成名錄", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/盾之勇者成名錄", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Taiwan/Hong Kong publishing under this title." + } + ], + "chinese_titles_tw": [ + { + "title": "盾之勇者成名錄", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/盾之勇者成名錄", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists Taiwan/Hong Kong publishing under this title." + } + ], + "korean_titles": [ + { + "title": "방패 용사 성공담", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/방패_용사_성공담", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "盾之勇者成名录", + "chinese_title_hk_mo": "盾之勇者成名錄", + "chinese_title_tw": "盾之勇者成名錄" + }, + { + "type": "anime", + "mal_id": 28999, + "url": "https://myanimelist.net/anime/28999/Charlotte", + "rank": 1286, + "popularity": 68, + "score": 7.76, + "members": 1766536, + "year": 2015, + "default_title": "Charlotte", + "english_title": "Charlotte", + "cjk_title": "Charlotte(シャーロット)", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "Charlotte(シャーロット)" + ], + "latin_titles": [ + "Charlotte", + "Charlotte" + ], + "titles": [ + { + "type": "Default", + "title": "Charlotte" + }, + { + "type": "Japanese", + "title": "Charlotte(シャーロット)" + }, + { + "type": "English", + "title": "Charlotte" + } + ], + "aliases": [ + "Charlotte", + "Charlotte(シャーロット)" + ], + "ids": { + "mal": 28999, + "jikan": 28999 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q18692527" + ], + "chinese_titles": [ + { + "title": "夏洛特", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/Charlotte_(動畫)", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "Charlotte (動畫)", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/Charlotte_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium" + }, + { + "title": "夏洛特", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q18692527", + "confidence": "medium" + }, + { + "title": "Charlotte", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q18692527", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "샤를로트 (애니메이션)", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EC%83%A4%EB%A5%BC%EB%A1%9C%ED%8A%B8_%28%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98%29" + }, + { + "title": "샤를로트", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q18692527" + }, + { + "title": "샤를로트", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/샤를로트_(애니메이션)", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 20997, + "chinese_title": "Charlotte (動畫)", + "korean_title": "샤를로트 (애니메이션)", + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "夏洛特", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/Charlotte_(動畫)", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [ + "No source-backed Mainland China or Hong Kong/Macau regional title was found." + ], + "chinese_title_cn": null, + "chinese_title_hk_mo": null, + "chinese_title_tw": "夏洛特" + }, + { + "type": "anime", + "mal_id": 29803, + "url": "https://myanimelist.net/anime/29803/Overlord", + "rank": 952, + "popularity": 69, + "score": 7.9, + "members": 1758631, + "year": 2015, + "default_title": "Overlord", + "english_title": "Overlord", + "cjk_title": "オーバーロード", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "オーバーロード" + ], + "latin_titles": [ + "Overlord", + "Overlord" + ], + "titles": [ + { + "type": "Default", + "title": "Overlord" + }, + { + "type": "Japanese", + "title": "オーバーロード" + }, + { + "type": "English", + "title": "Overlord" + } + ], + "aliases": [ + "Overlord", + "オーバーロード" + ], + "ids": { + "mal": 29803, + "jikan": 29803 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q106973342" + ], + "anilist_id": 20832, + "chinese_title": null, + "korean_title": "오버로드", + "chinese_titles_cn": [ + { + "title": "OVERLORD", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/OVERLORD_(動畫)", + "confidence": "medium", + "region": "zh_cn", + "note": "The page lists Mainland China streaming for the anime under the article title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "OVERLORD", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/OVERLORD_(動畫)", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Hong Kong/Macau licensing for the anime under the article title." + } + ], + "chinese_titles_tw": [ + { + "title": "OVERLORD", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/OVERLORD_(動畫)", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists Taiwan licensing for the anime under the article title." + } + ], + "korean_titles": [ + { + "title": "오버로드", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/오버로드_(소설)", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [], + "chinese_titles": [ + { + "title": "OVERLORD", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/OVERLORD_(動畫)", + "confidence": "medium", + "region": "zh_cn", + "note": "The page lists Mainland China streaming for the anime under the article title." + }, + { + "title": "OVERLORD", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/OVERLORD_(動畫)", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Hong Kong/Macau licensing for the anime under the article title." + }, + { + "title": "OVERLORD", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/OVERLORD_(動畫)", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists Taiwan licensing for the anime under the article title." + } + ], + "chinese_title_cn": "OVERLORD", + "chinese_title_hk_mo": "OVERLORD", + "chinese_title_tw": "OVERLORD" + }, + { + "type": "anime", + "mal_id": 13601, + "url": "https://myanimelist.net/anime/13601/Psycho-Pass", + "rank": 298, + "popularity": 70, + "score": 8.33, + "members": 1750685, + "year": 2012, + "default_title": "Psycho-Pass", + "english_title": "Psycho-Pass", + "cjk_title": "サイコパス", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "サイコパス" + ], + "latin_titles": [ + "Psycho-Pass", + "Psychopath", + "Psycho-Pass" + ], + "titles": [ + { + "type": "Default", + "title": "Psycho-Pass" + }, + { + "type": "Synonym", + "title": "Psychopath" + }, + { + "type": "Japanese", + "title": "サイコパス" + }, + { + "type": "English", + "title": "Psycho-Pass" + } + ], + "aliases": [ + "Psycho-Pass", + "サイコパス", + "Psychopath" + ], + "ids": { + "mal": 13601, + "jikan": 13601 + }, + "complexity_reasons": [ + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q1315951" + ], + "chinese_titles": [ + { + "title": "PSYCHO-PASS心靈判官", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/PSYCHO-PASS", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Hong Kong/Macau licensing under this anime title." + }, + { + "title": "PSYCHO-PASS心靈判官", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/PSYCHO-PASS", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists Taiwan licensing under this anime title." + }, + { + "title": "PSYCHO-PASS", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/PSYCHO-PASS", + "confidence": "medium" + }, + { + "title": "心靈判官", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q1315951", + "confidence": "medium" + }, + { + "title": "心理測量者", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q1315951", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "PSYCHO-PASS", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/PSYCHO-PASS" + }, + { + "title": "사이코패스", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q1315951" + }, + { + "title": "PSYCHO-PASS", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/PSYCHO-PASS", + "confidence": "high", + "region": "ko" + }, + { + "title": "사이코패스", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q1315951", + "confidence": "medium", + "region": "ko" + } + ], + "anilist_id": 13601, + "chinese_title": "PSYCHO-PASS", + "korean_title": "PSYCHO-PASS", + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [ + { + "title": "PSYCHO-PASS心靈判官", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/PSYCHO-PASS", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Hong Kong/Macau licensing under this anime title." + } + ], + "chinese_titles_tw": [ + { + "title": "PSYCHO-PASS心靈判官", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/PSYCHO-PASS", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists Taiwan licensing under this anime title." + } + ], + "title_enrichment_notes": [ + "No source-backed Mainland China regional title was found." + ], + "chinese_title_cn": null, + "chinese_title_hk_mo": "PSYCHO-PASS心靈判官", + "chinese_title_tw": "PSYCHO-PASS心靈判官" + }, + { + "type": "anime", + "mal_id": 28171, + "url": "https://myanimelist.net/anime/28171/Shokugeki_no_Souma", + "rank": 592, + "popularity": 71, + "score": 8.11, + "members": 1749892, + "year": 2015, + "default_title": "Shokugeki no Souma", + "english_title": "Food Wars! Shokugeki no Soma", + "cjk_title": "食戟のソーマ", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "食戟のソーマ" + ], + "latin_titles": [ + "Shokugeki no Souma", + "Shokugeki no Soma", + "Food Wars: Shokugeki no Soma", + "Food Wars! Shokugeki no Soma", + "Food Wars! Shokugeki no Soma", + "Food Wars! Shokugeki no Soma", + "Food Wars! Shokugeki no Soma" + ], + "titles": [ + { + "type": "Default", + "title": "Shokugeki no Souma" + }, + { + "type": "Synonym", + "title": "Shokugeki no Soma" + }, + { + "type": "Synonym", + "title": "Food Wars: Shokugeki no Soma" + }, + { + "type": "Japanese", + "title": "食戟のソーマ" + }, + { + "type": "English", + "title": "Food Wars! Shokugeki no Soma" + }, + { + "type": "German", + "title": "Food Wars! Shokugeki no Soma" + }, + { + "type": "Spanish", + "title": "Food Wars! Shokugeki no Soma" + }, + { + "type": "French", + "title": "Food Wars! Shokugeki no Soma" + } + ], + "aliases": [ + "Shokugeki no Souma", + "Food Wars! Shokugeki no Soma", + "食戟のソーマ", + "Shokugeki no Soma", + "Food Wars: Shokugeki no Soma" + ], + "ids": { + "mal": 28171, + "jikan": 28171 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q60518737" + ], + "anilist_id": 20923, + "chinese_titles": [ + { + "title": "食戟之灵", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "食戟之灵", + "source": "AniList synonym", + "url": "https://anilist.co/anime/20923", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese synonym; the Chinese Wikipedia page also lists Mainland China licensing." + }, + { + "title": "食戟之靈", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/食戟之靈_(動畫)", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Hong Kong/Macau licensing for the anime." + }, + { + "title": "食戟之靈", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/食戟之靈_(動畫)", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists Taiwan licensing for the anime." + }, + { + "title": "食戟之灵", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "食戟之灵", + "korean_title": "식극의 소마", + "chinese_titles_cn": [ + { + "title": "食戟之灵", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "食戟之灵", + "source": "AniList synonym", + "url": "https://anilist.co/anime/20923", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese synonym; the Chinese Wikipedia page also lists Mainland China licensing." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "食戟之靈", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/食戟之靈_(動畫)", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Hong Kong/Macau licensing for the anime." + } + ], + "chinese_titles_tw": [ + { + "title": "食戟之靈", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/食戟之靈_(動畫)", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists Taiwan licensing for the anime." + } + ], + "korean_titles": [ + { + "title": "식극의 소마", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/식극의_소마", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "食戟之灵", + "chinese_title_hk_mo": "食戟之靈", + "chinese_title_tw": "食戟之靈" + }, + { + "type": "anime", + "mal_id": 47778, + "url": "https://myanimelist.net/anime/47778/Kimetsu_no_Yaiba__Yuukaku-hen", + "rank": 71, + "popularity": 72, + "score": 8.69, + "members": 1744070, + "year": 2022, + "default_title": "Kimetsu no Yaiba: Yuukaku-hen", + "english_title": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", + "cjk_title": "鬼滅の刃 遊郭編", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "鬼滅の刃 遊郭編" + ], + "latin_titles": [ + "Kimetsu no Yaiba: Yuukaku-hen", + "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc" + ], + "titles": [ + { + "type": "Default", + "title": "Kimetsu no Yaiba: Yuukaku-hen" + }, + { + "type": "Japanese", + "title": "鬼滅の刃 遊郭編" + }, + { + "type": "English", + "title": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc" + } + ], + "aliases": [ + "Kimetsu no Yaiba: Yuukaku-hen", + "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", + "鬼滅の刃 遊郭編" + ], + "ids": { + "mal": 47778, + "jikan": 47778 + }, + "complexity_reasons": [ + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q105847067" + ], + "chinese_titles": [ + { + "title": "鬼灭之刃 游郭篇", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q105847067", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "鬼灭之刃 花街篇", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q105847067", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "鬼滅之刃 遊郭篇", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鬼滅之刃_遊郭篇", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Hong Kong/Macau distribution and a Hong Kong Cantonese cast source under this title." + }, + { + "title": "鬼滅之刃 遊郭篇", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鬼滅之刃_遊郭篇", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists Taiwan distribution under this title." + }, + { + "title": "鬼滅之刃 遊郭篇", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E9%AC%BC%E6%BB%85%E4%B9%8B%E5%88%83_%E9%81%8A%E9%83%AD%E7%AF%87", + "confidence": "medium" + }, + { + "title": "鬼灭之刃 游郭篇", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q105847067", + "confidence": "medium" + }, + { + "title": "鬼灭之刃 花街篇", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q105847067", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "귀멸의 칼날: 환락의 거리편", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EA%B7%80%EB%A9%B8%EC%9D%98_%EC%B9%BC%EB%82%A0%3A_%ED%99%98%EB%9D%BD%EC%9D%98_%EA%B1%B0%EB%A6%AC%ED%8E%B8" + }, + { + "title": "귀멸의 칼날: 유곽 편", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q105847067" + }, + { + "title": "귀멸의 칼날: 유곽 편", + "source": "Wikidata", + "url": "https://www.wikidata.org/wiki/Q105847067", + "confidence": "high", + "region": "ko" + }, + { + "title": "귀멸의 칼날: 환락의 거리편", + "source": "AniList synonym", + "url": "https://anilist.co/anime/142329", + "confidence": "medium", + "region": "ko" + } + ], + "anilist_id": 142329, + "chinese_title": "鬼滅之刃 遊郭篇", + "korean_title": "귀멸의 칼날: 환락의 거리편", + "chinese_titles_cn": [ + { + "title": "鬼灭之刃 游郭篇", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q105847067", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "鬼灭之刃 花街篇", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q105847067", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "鬼滅之刃 遊郭篇", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鬼滅之刃_遊郭篇", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Hong Kong/Macau distribution and a Hong Kong Cantonese cast source under this title." + } + ], + "chinese_titles_tw": [ + { + "title": "鬼滅之刃 遊郭篇", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鬼滅之刃_遊郭篇", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists Taiwan distribution under this title." + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "鬼灭之刃 游郭篇", + "chinese_title_hk_mo": "鬼滅之刃 遊郭篇", + "chinese_title_tw": "鬼滅之刃 遊郭篇" + }, + { + "type": "anime", + "mal_id": 37510, + "url": "https://myanimelist.net/anime/37510/Mob_Psycho_100_II", + "rank": 42, + "popularity": 73, + "score": 8.78, + "members": 1729146, + "year": 2019, + "default_title": "Mob Psycho 100 II", + "english_title": "Mob Psycho 100 II", + "cjk_title": "モブサイコ100 II", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "モブサイコ100 II" + ], + "latin_titles": [ + "Mob Psycho 100 II", + "Mob Psycho 100 2nd Season", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred", + "Mob Psycho 100 II" + ], + "titles": [ + { + "type": "Default", + "title": "Mob Psycho 100 II" + }, + { + "type": "Synonym", + "title": "Mob Psycho 100 2nd Season" + }, + { + "type": "Synonym", + "title": "Mob Psycho Hyaku" + }, + { + "type": "Synonym", + "title": "Mob Psycho One Hundred" + }, + { + "type": "Japanese", + "title": "モブサイコ100 II" + }, + { + "type": "English", + "title": "Mob Psycho 100 II" + } + ], + "aliases": [ + "Mob Psycho 100 II", + "モブサイコ100 II", + "Mob Psycho 100 2nd Season", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "ids": { + "mal": 37510, + "jikan": 37510 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "season/part/number marker", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q114011046" + ], + "anilist_id": 101338, + "chinese_title": null, + "korean_title": "모브 사이코 100 II", + "chinese_titles_cn": [ + { + "title": "路人超能100 II", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/路人超能100", + "confidence": "high", + "region": "zh_cn", + "note": "Listed as the Mainland China animation title for the work; season 2 is listed as 路人超能100 II." + }, + { + "title": "灵能百分百", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/路人超能100", + "confidence": "high", + "region": "zh_cn", + "note": "Listed as a Mainland China common/formal title for the work." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "路人超能100 II", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/路人超能100", + "confidence": "high", + "region": "zh_tw", + "note": "Listed as the Taiwan animation title for the work; season 2 is listed as 路人超能100 II." + } + ], + "korean_titles": [ + { + "title": "모브 사이코 100 II", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/모브_사이코_100", + "confidence": "high", + "region": "ko" + }, + { + "title": "모브 사이코 100", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/모브_사이코_100", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No source-backed Hong Kong/Macau regional title was found." + ], + "chinese_titles": [ + { + "title": "路人超能100 II", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/路人超能100", + "confidence": "high", + "region": "zh_cn", + "note": "Listed as the Mainland China animation title for the work; season 2 is listed as 路人超能100 II." + }, + { + "title": "灵能百分百", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/路人超能100", + "confidence": "high", + "region": "zh_cn", + "note": "Listed as a Mainland China common/formal title for the work." + }, + { + "title": "路人超能100 II", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/路人超能100", + "confidence": "high", + "region": "zh_tw", + "note": "Listed as the Taiwan animation title for the work; season 2 is listed as 路人超能100 II." + } + ], + "chinese_title_cn": "路人超能100 II", + "chinese_title_hk_mo": null, + "chinese_title_tw": "路人超能100 II" + }, + { + "type": "anime", + "mal_id": 9989, + "url": "https://myanimelist.net/anime/9989/Ano_Hi_Mita_Hana_no_Namae_wo_Bokutachi_wa_Mada_Shiranai", + "rank": 326, + "popularity": 74, + "score": 8.29, + "members": 1709973, + "year": 2011, + "default_title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "english_title": "Anohana: The Flower We Saw That Day", + "cjk_title": "あの日見た花の名前を僕達はまだ知らない。", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "あの日見た花の名前を僕達はまだ知らない。" + ], + "latin_titles": [ + "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "AnoHana", + "We Still Don't Know the Name of the Flower We Saw That Day.", + "Anohana: The Flower We Saw That Day", + "AnoHana: Die Blume, die Wir an Jenem Tag Sahen", + "anohana: The Flower We Saw that Day", + "Anohana: The Flower We Saw That Day" + ], + "titles": [ + { + "type": "Default", + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai." + }, + { + "type": "Synonym", + "title": "AnoHana" + }, + { + "type": "Synonym", + "title": "We Still Don't Know the Name of the Flower We Saw That Day." + }, + { + "type": "Japanese", + "title": "あの日見た花の名前を僕達はまだ知らない。" + }, + { + "type": "English", + "title": "Anohana: The Flower We Saw That Day" + }, + { + "type": "German", + "title": "AnoHana: Die Blume, die Wir an Jenem Tag Sahen" + }, + { + "type": "Spanish", + "title": "anohana: The Flower We Saw that Day" + }, + { + "type": "French", + "title": "Anohana: The Flower We Saw That Day" + } + ], + "aliases": [ + "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "Anohana: The Flower We Saw That Day", + "あの日見た花の名前を僕達はまだ知らない。", + "AnoHana", + "We Still Don't Know the Name of the Flower We Saw That Day.", + "AnoHana: Die Blume, die Wir an Jenem Tag Sahen", + "anohana: The Flower We Saw that Day" + ], + "ids": { + "mal": 9989, + "jikan": 9989 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q483943" + ], + "chinese_titles": [ + { + "title": "我们仍未知道那天所看见的花的名字。", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/我們仍未知道那天所看見的花的名字。", + "confidence": "high", + "region": "zh_cn", + "note": "Listed as the official simplified Chinese title from Fuji TV Chinese." + }, + { + "title": "我們仍未知道那天所看見的花名。", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/我們仍未知道那天所看見的花的名字。", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists this as the Hong Kong formal title; no Macau-specific source was found." + }, + { + "title": "我們仍未知道那天所看見的花名。", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/我們仍未知道那天所看見的花的名字。", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists this as the Taiwan formal title." + }, + { + "title": "我們仍未知道那天所看見的花的名字。", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E5%80%91%E4%BB%8D%E6%9C%AA%E7%9F%A5%E9%81%93%E9%82%A3%E5%A4%A9%E6%89%80%E7%9C%8B%E8%A6%8B%E7%9A%84%E8%8A%B1%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", + "confidence": "medium" + }, + { + "title": "我们仍未知道那天所看见的花的名", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium" + }, + { + "title": "我们仍未知道那天所看见的花的名字", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium" + }, + { + "title": "我们还未知道那天看到的花的名字", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium" + }, + { + "title": "我們仍未知道那天所看見的花的名字", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium" + }, + { + "title": "我們仍然不知道那天所見到的花叫什麼名字", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium" + }, + { + "title": "我們還未知道那天所看見的花的名字", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium" + }, + { + "title": "我们仍未知道那天所看见的花的名字。", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium" + }, + { + "title": "我們還未知道那天看到的花的名字。", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium" + }, + { + "title": "未聞花名", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium" + }, + { + "title": "花名未闻", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium" + }, + { + "title": "花开未名", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium" + }, + { + "title": "那日所见花儿之名我们仍未知晓", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium" + }, + { + "title": "那朵花", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "그날 본 꽃의 이름을 우리는 아직 모른다", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EA%B7%B8%EB%82%A0_%EB%B3%B8_%EA%BD%83%EC%9D%98_%EC%9D%B4%EB%A6%84%EC%9D%84_%EC%9A%B0%EB%A6%AC%EB%8A%94_%EC%95%84%EC%A7%81_%EB%AA%A8%EB%A5%B8%EB%8B%A4" + }, + { + "title": "그날 본 꽃의 이름을 우리들은 아직 모른다", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q483943" + }, + { + "title": "아노하나", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q483943" + }, + { + "title": "그날 본 꽃의 이름을 우리는 아직 모른다", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/그날_본_꽃의_이름을_우리는_아직_모른다", + "confidence": "high", + "region": "ko" + }, + { + "title": "아노하나", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium", + "region": "ko" + } + ], + "anilist_id": 9989, + "chinese_title": "我們仍未知道那天所看見的花的名字。", + "korean_title": "그날 본 꽃의 이름을 우리는 아직 모른다", + "chinese_titles_cn": [ + { + "title": "我们仍未知道那天所看见的花的名字。", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/我們仍未知道那天所看見的花的名字。", + "confidence": "high", + "region": "zh_cn", + "note": "Listed as the official simplified Chinese title from Fuji TV Chinese." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "我們仍未知道那天所看見的花名。", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/我們仍未知道那天所看見的花的名字。", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists this as the Hong Kong formal title; no Macau-specific source was found." + } + ], + "chinese_titles_tw": [ + { + "title": "我們仍未知道那天所看見的花名。", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/我們仍未知道那天所看見的花的名字。", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists this as the Taiwan formal title." + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "我们仍未知道那天所看见的花的名字。", + "chinese_title_hk_mo": "我們仍未知道那天所看見的花名。", + "chinese_title_tw": "我們仍未知道那天所看見的花名。" + }, + { + "type": "anime", + "mal_id": 15809, + "url": "https://myanimelist.net/anime/15809/Hataraku_Maou-sama", + "rank": 1466, + "popularity": 75, + "score": 7.7, + "members": 1658253, + "year": 2013, + "default_title": "Hataraku Maou-sama!", + "english_title": "The Devil is a Part-Timer!", + "cjk_title": "はたらく魔王さま!", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "はたらく魔王さま!" + ], + "latin_titles": [ + "Hataraku Maou-sama!", + "Hataraku Maou-sama!", + "The Devil is a Part-Timer!", + "The Devil is a Part-Timer!", + "The Devil is a Part-Timer!", + "The Devil is a Part-Timer!" + ], + "titles": [ + { + "type": "Default", + "title": "Hataraku Maou-sama!" + }, + { + "type": "Synonym", + "title": "Hataraku Maou-sama!" + }, + { + "type": "Japanese", + "title": "はたらく魔王さま!" + }, + { + "type": "English", + "title": "The Devil is a Part-Timer!" + }, + { + "type": "German", + "title": "The Devil is a Part-Timer!" + }, + { + "type": "Spanish", + "title": "The Devil is a Part-Timer!" + }, + { + "type": "French", + "title": "The Devil is a Part-Timer!" + } + ], + "aliases": [ + "Hataraku Maou-sama!", + "The Devil is a Part-Timer!", + "はたらく魔王さま!" + ], + "ids": { + "mal": 15809, + "jikan": 15809 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:04Z", + "wikidata_ids": [ + "Q111686487" + ], + "chinese_titles": [ + { + "title": "打工吧!魔王大人", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/打工吧!魔王大人", + "confidence": "high", + "region": "zh_cn", + "note": "The page lists Mainland China publishing for the work under this title." + }, + { + "title": "打工吧!魔王大人", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/打工吧!魔王大人", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Taiwan/Hong Kong publishing and Hong Kong/Macau anime distribution under this title." + }, + { + "title": "打工吧!魔王大人", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/打工吧!魔王大人", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists Taiwan publishing and anime distribution under this title." + }, + { + "title": "打工吧!魔王大人", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q111686487", + "confidence": "medium" + } + ], + "anilist_id": 15809, + "chinese_title": "打工吧!魔王大人", + "korean_title": "알바 뛰는 마왕님!", + "chinese_titles_cn": [ + { + "title": "打工吧!魔王大人", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/打工吧!魔王大人", + "confidence": "high", + "region": "zh_cn", + "note": "The page lists Mainland China publishing for the work under this title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "打工吧!魔王大人", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/打工吧!魔王大人", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Taiwan/Hong Kong publishing and Hong Kong/Macau anime distribution under this title." + } + ], + "chinese_titles_tw": [ + { + "title": "打工吧!魔王大人", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/打工吧!魔王大人", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists Taiwan publishing and anime distribution under this title." + } + ], + "korean_titles": [ + { + "title": "알바 뛰는 마왕님!", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/알바_뛰는_마왕님!", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "打工吧!魔王大人", + "chinese_title_hk_mo": "打工吧!魔王大人", + "chinese_title_tw": "打工吧!魔王大人" + }, + { + "type": "anime", + "mal_id": 32937, + "url": "https://myanimelist.net/anime/32937/Kono_Subarashii_Sekai_ni_Shukufuku_wo_2", + "rank": 399, + "popularity": 76, + "score": 8.24, + "members": 1656170, + "year": 2017, + "default_title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "english_title": "KonoSuba: God's Blessing on This Wonderful World! 2", + "cjk_title": "この素晴らしい世界に祝福を! 2", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "この素晴らしい世界に祝福を! 2" + ], + "latin_titles": [ + "Kono Subarashii Sekai ni Shukufuku wo! 2", + "Give Blessings to This Wonderful World! 2", + "KonoSuba: God's Blessing on This Wonderful World! 2", + "KonoSuba: God's blessing on this wonderful world! 2", + "KonoSuba: God's blessing on this wonderful world! 2", + "KonoSuba: God's blessing on this wonderful world! 2" + ], + "titles": [ + { + "type": "Default", + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2" + }, + { + "type": "Synonym", + "title": "Give Blessings to This Wonderful World! 2" + }, + { + "type": "Japanese", + "title": "この素晴らしい世界に祝福を! 2" + }, + { + "type": "English", + "title": "KonoSuba: God's Blessing on This Wonderful World! 2" + }, + { + "type": "German", + "title": "KonoSuba: God's blessing on this wonderful world! 2" + }, + { + "type": "Spanish", + "title": "KonoSuba: God's blessing on this wonderful world! 2" + }, + { + "type": "French", + "title": "KonoSuba: God's blessing on this wonderful world! 2" + } + ], + "aliases": [ + "Kono Subarashii Sekai ni Shukufuku wo! 2", + "KonoSuba: God's Blessing on This Wonderful World! 2", + "この素晴らしい世界に祝福を! 2", + "Give Blessings to This Wonderful World! 2", + "KonoSuba: God's blessing on this wonderful world! 2" + ], + "ids": { + "mal": 32937, + "jikan": 32937 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q112171596" + ], + "chinese_titles": [ + { + "title": "为美好的世界献上祝福!2", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "为美好的世界献上祝福第二季", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "為美好的世界獻上祝福!2", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q112171596", + "confidence": "medium" + }, + { + "title": "为美好的世界献上祝福!2", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + }, + { + "title": "为美好的世界献上祝福第二季", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "anilist_id": 21699, + "chinese_title": "為美好的世界獻上祝福!2", + "korean_title": "이 멋진 세계에 축복을! 2", + "chinese_titles_cn": [ + { + "title": "为美好的世界献上祝福!2", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "为美好的世界献上祝福第二季", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "이 멋진 세계에 축복을! 2", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/이_멋진_세계에_축복을!", + "confidence": "high", + "region": "ko" + }, + { + "title": "이 멋진 세계에 축복을!", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/이_멋진_세계에_축복을!", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No source-backed Mainland China, Hong Kong/Macau, or Taiwan regional title was found for season 2 specifically." + ], + "chinese_title_cn": "为美好的世界献上祝福!2", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 28121, + "url": "https://myanimelist.net/anime/28121/Dungeon_ni_Deai_wo_Motomeru_no_wa_Machigatteiru_Darou_ka", + "rank": 2116, + "popularity": 77, + "score": 7.53, + "members": 1655179, + "year": 2015, + "default_title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "english_title": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "cjk_title": "ダンジョンに出会いを求めるのは間違っているだろうか", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "ダンジョンに出会いを求めるのは間違っているだろうか" + ], + "latin_titles": [ + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "DanMachi", + "Is It Wrong That I Want to Meet You in a Dungeon", + "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "DANMACHI ¿Qué tiene de Malo intentar Ligar en una Mazmorra?", + "DanMachi: Familia Myth" + ], + "titles": [ + { + "type": "Default", + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka" + }, + { + "type": "Synonym", + "title": "DanMachi" + }, + { + "type": "Synonym", + "title": "Is It Wrong That I Want to Meet You in a Dungeon" + }, + { + "type": "Japanese", + "title": "ダンジョンに出会いを求めるのは間違っているだろうか" + }, + { + "type": "English", + "title": "Is It Wrong to Try to Pick Up Girls in a Dungeon?" + }, + { + "type": "German", + "title": "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?" + }, + { + "type": "Spanish", + "title": "DANMACHI ¿Qué tiene de Malo intentar Ligar en una Mazmorra?" + }, + { + "type": "French", + "title": "DanMachi: Familia Myth" + } + ], + "aliases": [ + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "ダンジョンに出会いを求めるのは間違っているだろうか", + "DanMachi", + "Is It Wrong That I Want to Meet You in a Dungeon", + "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "DANMACHI ¿Qué tiene de Malo intentar Ligar en una Mazmorra?", + "DanMachi: Familia Myth" + ], + "ids": { + "mal": 28121, + "jikan": 28121 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q102175684" + ], + "anilist_id": 20920, + "chinese_titles": [ + { + "title": "在地下城寻求邂逅是否搞错了什么", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "在地下城尋求邂逅是否搞錯了什麼", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/在地下城尋求邂逅是否搞錯了什麼", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Taiwan/Hong Kong publishing under this title." + }, + { + "title": "在地下城尋求邂逅是否搞錯了什麼", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/在地下城尋求邂逅是否搞錯了什麼", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists Taiwan/Hong Kong publishing under this title." + }, + { + "title": "在地下城寻求邂逅是否搞错了什么", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "在地下城寻求邂逅是否搞错了什么", + "korean_title": "던전에서 만남을 추구하면 안 되는 걸까", + "chinese_titles_cn": [ + { + "title": "在地下城寻求邂逅是否搞错了什么", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "在地下城尋求邂逅是否搞錯了什麼", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/在地下城尋求邂逅是否搞錯了什麼", + "confidence": "high", + "region": "zh_hk_mo", + "note": "The page lists Taiwan/Hong Kong publishing under this title." + } + ], + "chinese_titles_tw": [ + { + "title": "在地下城尋求邂逅是否搞錯了什麼", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/在地下城尋求邂逅是否搞錯了什麼", + "confidence": "high", + "region": "zh_tw", + "note": "The page lists Taiwan/Hong Kong publishing under this title." + } + ], + "korean_titles": [ + { + "title": "던전에서 만남을 추구하면 안 되는 걸까", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/던전에서_만남을_추구하면_안_되는_걸까", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No source-backed Mainland China regional title was found." + ], + "chinese_title_cn": "在地下城寻求邂逅是否搞错了什么", + "chinese_title_hk_mo": "在地下城尋求邂逅是否搞錯了什麼", + "chinese_title_tw": "在地下城尋求邂逅是否搞錯了什麼" + }, + { + "type": "anime", + "mal_id": 37430, + "url": "https://myanimelist.net/anime/37430/Tensei_shitara_Slime_Datta_Ken", + "rank": 561, + "popularity": 78, + "score": 8.13, + "members": 1647510, + "year": 2018, + "default_title": "Tensei shitara Slime Datta Ken", + "english_title": "That Time I Got Reincarnated as a Slime", + "cjk_title": "転生したらスライムだった件", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "転生したらスライムだった件" + ], + "latin_titles": [ + "Tensei shitara Slime Datta Ken", + "TenSura", + "That Time I Got Reincarnated as a Slime", + "That Time I Got Reincamrnated as a Slime", + "That Time I Got Reincarnated as a Slime", + "That Time I Got Reincarnated as a Slime" + ], + "titles": [ + { + "type": "Default", + "title": "Tensei shitara Slime Datta Ken" + }, + { + "type": "Synonym", + "title": "TenSura" + }, + { + "type": "Japanese", + "title": "転生したらスライムだった件" + }, + { + "type": "English", + "title": "That Time I Got Reincarnated as a Slime" + }, + { + "type": "German", + "title": "That Time I Got Reincamrnated as a Slime" + }, + { + "type": "Spanish", + "title": "That Time I Got Reincarnated as a Slime" + }, + { + "type": "French", + "title": "That Time I Got Reincarnated as a Slime" + } + ], + "aliases": [ + "Tensei shitara Slime Datta Ken", + "That Time I Got Reincarnated as a Slime", + "転生したらスライムだった件", + "TenSura", + "That Time I Got Reincamrnated as a Slime" + ], + "ids": { + "mal": 37430, + "jikan": 37430 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q96408046" + ], + "chinese_titles": [ + { + "title": "关于我转生变成史莱姆这档事", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "關於我轉生變成史萊姆這檔事", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q96408046", + "confidence": "medium" + }, + { + "title": "关于我转生变成史莱姆这档事", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "anilist_id": 101280, + "chinese_title": "關於我轉生變成史萊姆這檔事", + "korean_title": "전생했더니 슬라임이었던 건에 대하여", + "chinese_titles_cn": [ + { + "title": "关于我转生变成史莱姆这档事", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "전생했더니 슬라임이었던 건에 대하여", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/전생했더니_슬라임이었던_건에_대하여", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "Chinese sources found do not distinguish Mainland China, Hong Kong/Macau, or Taiwan title variants." + ], + "chinese_title_cn": "关于我转生变成史莱姆这档事", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 42897, + "url": "https://myanimelist.net/anime/42897/Horimiya", + "rank": 485, + "popularity": 79, + "score": 8.18, + "members": 1642538, + "year": 2021, + "default_title": "Horimiya", + "english_title": "Horimiya", + "cjk_title": "ホリミヤ", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ホリミヤ" + ], + "latin_titles": [ + "Horimiya", + "Hori-san and Miyamura-kun", + "Horimiya" + ], + "titles": [ + { + "type": "Default", + "title": "Horimiya" + }, + { + "type": "Synonym", + "title": "Hori-san and Miyamura-kun" + }, + { + "type": "Japanese", + "title": "ホリミヤ" + }, + { + "type": "English", + "title": "Horimiya" + } + ], + "aliases": [ + "Horimiya", + "ホリミヤ", + "Hori-san and Miyamura-kun" + ], + "ids": { + "mal": 42897, + "jikan": 42897 + }, + "complexity_reasons": [ + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q104815263" + ], + "chinese_titles": [ + { + "title": "堀与宫村", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "堀與宮村", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q104815263", + "confidence": "medium" + }, + { + "title": "堀与宫村", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "호리미야", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q104815263" + }, + { + "title": "호리미야", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/호리미야", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 124080, + "chinese_title": "堀與宮村", + "korean_title": "호리미야", + "chinese_titles_cn": [ + { + "title": "堀与宫村", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "title_enrichment_notes": [ + "Chinese sources found do not distinguish Mainland China, Hong Kong/Macau, or Taiwan title variants." + ], + "chinese_title_cn": "堀与宫村", + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 34933, + "url": "https://myanimelist.net/anime/34933/Kakegurui", + "rank": 3939, + "popularity": 80, + "score": 7.21, + "members": 1628154, + "year": 2017, + "default_title": "Kakegurui", + "english_title": "Kakegurui", + "cjk_title": "賭ケグルイ", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "賭ケグルイ" + ], + "latin_titles": [ + "Kakegurui", + "Kakegurui: Compulsive Gambler", + "Gambling School", + "Kakegurui", + "Kakegurui: Das Leben ist ein Spiel", + "Gambling School" + ], + "titles": [ + { + "type": "Default", + "title": "Kakegurui" + }, + { + "type": "Synonym", + "title": "Kakegurui: Compulsive Gambler" + }, + { + "type": "Synonym", + "title": "Gambling School" + }, + { + "type": "Japanese", + "title": "賭ケグルイ" + }, + { + "type": "English", + "title": "Kakegurui" + }, + { + "type": "German", + "title": "Kakegurui: Das Leben ist ein Spiel" + }, + { + "type": "French", + "title": "Gambling School" + } + ], + "aliases": [ + "Kakegurui", + "賭ケグルイ", + "Kakegurui: Compulsive Gambler", + "Gambling School", + "Kakegurui: Das Leben ist ein Spiel" + ], + "ids": { + "mal": 34933, + "jikan": 34933 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q113222149" + ], + "anilist_id": 98314, + "chinese_title": null, + "korean_title": "카케구루이", + "chinese_titles_cn": [ + { + "title": "狂赌之渊", + "source": "Douban", + "url": "https://movie.douban.com/subject/26977244/", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "狂赌之渊", + "source": "Bangumi tag", + "url": "https://bangumi.tv/anime/tag/%E7%8B%82%E8%B5%8C%E4%B9%8B%E6%B8%8A", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "狂賭之淵", + "source": "AniHK", + "url": "https://anihk.com/anime/kakegurui", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "狂賭之淵", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E7%8B%82%E8%B3%AD%E4%B9%8B%E6%B7%B5", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "狂賭之淵", + "source": "DramaQueen Taiwan", + "url": "https://www.dramaqueen.com.tw/tvshow/Kakegurui.html", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "카케구루이", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/카케구루이", + "confidence": "high", + "region": "ko" + }, + { + "title": "카케구루이", + "source": "Wikidata", + "url": "https://www.wikidata.org/wiki/Q18700981", + "confidence": "high", + "region": "ko" + }, + { + "title": "카케구루이", + "source": "Libre Wiki", + "url": "https://librewiki.net/wiki/%EC%B9%B4%EC%BC%80%EA%B5%AC%EB%A3%A8%EC%9D%B4", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "Chinese sources found do not distinguish Mainland China, Hong Kong/Macau, or Taiwan title variants." + ], + "chinese_titles": [ + { + "title": "狂赌之渊", + "source": "Douban", + "url": "https://movie.douban.com/subject/26977244/", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "狂赌之渊", + "source": "Bangumi tag", + "url": "https://bangumi.tv/anime/tag/%E7%8B%82%E8%B5%8C%E4%B9%8B%E6%B8%8A", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "狂賭之淵", + "source": "AniHK", + "url": "https://anihk.com/anime/kakegurui", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "狂賭之淵", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E7%8B%82%E8%B3%AD%E4%B9%8B%E6%B7%B5", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "狂賭之淵", + "source": "DramaQueen Taiwan", + "url": "https://www.dramaqueen.com.tw/tvshow/Kakegurui.html", + "confidence": "high", + "region": "zh_tw" + } + ], + "chinese_title_cn": "狂赌之渊", + "chinese_title_hk_mo": "狂賭之淵", + "chinese_title_tw": "狂賭之淵" + }, + { + "type": "anime", + "mal_id": 226, + "url": "https://myanimelist.net/anime/226/Elfen_Lied", + "rank": 2454, + "popularity": 81, + "score": 7.46, + "members": 1617749, + "year": 2004, + "default_title": "Elfen Lied", + "english_title": "Elfen Lied", + "cjk_title": "エルフェンリート", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "エルフェンリート" + ], + "latin_titles": [ + "Elfen Lied", + "Elfen Song", + "Elfic Song", + "Elf Song", + "Elfen Lied" + ], + "titles": [ + { + "type": "Default", + "title": "Elfen Lied" + }, + { + "type": "Synonym", + "title": "Elfen Song" + }, + { + "type": "Synonym", + "title": "Elfic Song" + }, + { + "type": "Synonym", + "title": "Elf Song" + }, + { + "type": "Japanese", + "title": "エルフェンリート" + }, + { + "type": "English", + "title": "Elfen Lied" + } + ], + "aliases": [ + "Elfen Lied", + "エルフェンリート", + "Elfen Song", + "Elfic Song", + "Elf Song" + ], + "ids": { + "mal": 226, + "jikan": 226 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q1328446" + ], + "chinese_titles": [ + { + "title": "妖精的旋律", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q1328446", + "confidence": "medium" + } + ], + "anilist_id": 226, + "chinese_title": "妖精的旋律", + "korean_title": "엘펜리트", + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "엘펜리트", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/엘펜리트", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "Chinese sources found do not distinguish Mainland China, Hong Kong/Macau, or Taiwan title variants." + ], + "chinese_title_cn": null, + "chinese_title_hk_mo": null, + "chinese_title_tw": null + }, + { + "type": "anime", + "mal_id": 8074, + "url": "https://myanimelist.net/anime/8074/Highschool_of_the_Dead", + "rank": 4840, + "popularity": 82, + "score": 7.06, + "members": 1612012, + "year": 2010, + "default_title": "Highschool of the Dead", + "english_title": "High School of the Dead", + "cjk_title": "学園黙示録 HIGHSCHOOL OF THE DEAD", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "学園黙示録 HIGHSCHOOL OF THE DEAD" + ], + "latin_titles": [ + "Highschool of the Dead", + "Gakuen Mokushiroku: Highschool of the Dead", + "HOTD", + "HSOTD", + "High School of the Dead", + "High School Of The Dead: Apocalipsis en el Instituto", + "High School of The Dead" + ], + "titles": [ + { + "type": "Default", + "title": "Highschool of the Dead" + }, + { + "type": "Synonym", + "title": "Gakuen Mokushiroku: Highschool of the Dead" + }, + { + "type": "Synonym", + "title": "HOTD" + }, + { + "type": "Synonym", + "title": "HSOTD" + }, + { + "type": "Japanese", + "title": "学園黙示録 HIGHSCHOOL OF THE DEAD" + }, + { + "type": "English", + "title": "High School of the Dead" + }, + { + "type": "Spanish", + "title": "High School Of The Dead: Apocalipsis en el Instituto" + }, + { + "type": "French", + "title": "High School of The Dead" + } + ], + "aliases": [ + "Highschool of the Dead", + "High School of the Dead", + "学園黙示録 HIGHSCHOOL OF THE DEAD", + "Gakuen Mokushiroku: Highschool of the Dead", + "HOTD", + "HSOTD", + "High School Of The Dead: Apocalipsis en el Instituto", + "High School of The Dead" + ], + "ids": { + "mal": 8074, + "jikan": 8074 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q120562331" + ], + "anilist_id": 8074, + "chinese_title": null, + "korean_title": "학원묵시록 HIGHSCHOOL OF THE DEAD", + "chinese_titles_cn": [ + { + "title": "学园默示录", + "source": "ComicK", + "url": "https://comick.dev/comic/highschool-of-the-dead-full-color", + "confidence": "medium", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "學園默示錄", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%AD%B8%E5%9C%92%E9%BB%98%E7%A4%BA%E9%8C%84", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Traditional Chinese source; no Hong Kong/Macau-only title was found." + } + ], + "chinese_titles_tw": [ + { + "title": "學園默示錄", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%AD%B8%E5%9C%92%E9%BB%98%E7%A4%BA%E9%8C%84", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "學園默示錄", + "source": "AniBase zh-Hant", + "url": "https://anibase.net/zh-hant/anime/4xYgN/%E5%AD%B8%E5%9C%92%E9%BB%98%E7%A4%BA%E9%8C%84", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "학원묵시록 HIGHSCHOOL OF THE DEAD", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/학원묵시록_HIGHSCHOOL_OF_THE_DEAD", + "confidence": "high", + "region": "ko" + }, + { + "title": "학원묵시록", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/학원묵시록_HIGHSCHOOL_OF_THE_DEAD", + "confidence": "medium", + "region": "ko" + }, + { + "title": "학원묵시록 HIGHSCHOOL OF THE DEAD", + "source": "Watcha Pedia", + "url": "https://pedia.watcha.com/ko-JP/contents/tRMX9wE", + "confidence": "high", + "region": "ko" + }, + { + "title": "학원묵시록", + "source": "AniBase", + "url": "https://anibase.net/en/anime/4xYgN/Highschool-of-the-Dead", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "Chinese sources found do not distinguish Mainland China, Hong Kong/Macau, or Taiwan title variants." + ], + "chinese_titles": [ + { + "title": "学园默示录", + "source": "ComicK", + "url": "https://comick.dev/comic/highschool-of-the-dead-full-color", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "學園默示錄", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%AD%B8%E5%9C%92%E9%BB%98%E7%A4%BA%E9%8C%84", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Traditional Chinese source; no Hong Kong/Macau-only title was found." + }, + { + "title": "學園默示錄", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%AD%B8%E5%9C%92%E9%BB%98%E7%A4%BA%E9%8C%84", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "學園默示錄", + "source": "AniBase zh-Hant", + "url": "https://anibase.net/zh-hant/anime/4xYgN/%E5%AD%B8%E5%9C%92%E9%BB%98%E7%A4%BA%E9%8C%84", + "confidence": "high", + "region": "zh_tw" + } + ], + "chinese_title_cn": "学园默示录", + "chinese_title_hk_mo": "學園默示錄", + "chinese_title_tw": "學園默示錄" + }, + { + "type": "anime", + "mal_id": 10087, + "url": "https://myanimelist.net/anime/10087/Fate_Zero", + "rank": 369, + "popularity": 83, + "score": 8.26, + "members": 1605483, + "year": 2011, + "default_title": "Fate/Zero", + "english_title": "Fate/Zero", + "cjk_title": "フェイト/ゼロ", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "フェイト/ゼロ" + ], + "latin_titles": [ + "Fate/Zero", + "Fate/Zero" + ], + "titles": [ + { + "type": "Default", + "title": "Fate/Zero" + }, + { + "type": "Japanese", + "title": "フェイト/ゼロ" + }, + { + "type": "English", + "title": "Fate/Zero" + } + ], + "aliases": [ + "Fate/Zero", + "フェイト/ゼロ" + ], + "ids": { + "mal": 10087, + "jikan": 10087 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q96500220" + ], + "anilist_id": 10087, + "chinese_title": null, + "korean_title": "Fate/Zero", + "chinese_titles_cn": [ + { + "title": "命运之零", + "source": "Bangumi", + "url": "https://bangumi.tv/subject/10639", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "命運/零話", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/Fate/Zero", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "命運/零話", + "source": "Taiwan Dubbing Wiki", + "url": "https://vocustaiwan.fandom.com/zh-tw/wiki/Fate/Zero", + "confidence": "medium", + "region": "zh_tw" + }, + { + "title": "命運/零話", + "source": "YesAsia Taiwan DVD listing", + "url": "https://www.yesasia.com/us/fate-zero-dvd-vol-4-taiwan-version/1032174632-0-0-0-en/info.html", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "Fate/Zero", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/Fate/Zero", + "confidence": "high", + "region": "ko" + }, + { + "title": "페이트/제로", + "source": "Libre Wiki", + "url": "https://librewiki.net/wiki/Fate/Zero", + "confidence": "high", + "region": "ko" + }, + { + "title": "페이트 / 제로", + "source": "JustWatch Korea", + "url": "https://www.justwatch.com/kr/TV-%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%A8/peiteu-jero", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "Chinese sources found do not distinguish Mainland China, Hong Kong/Macau, or Taiwan title variants.", + "No Hong Kong/Macau-specific title was found in this pass." + ], + "chinese_titles": [ + { + "title": "命运之零", + "source": "Bangumi", + "url": "https://bangumi.tv/subject/10639", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "命運/零話", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/Fate/Zero", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "命運/零話", + "source": "Taiwan Dubbing Wiki", + "url": "https://vocustaiwan.fandom.com/zh-tw/wiki/Fate/Zero", + "confidence": "medium", + "region": "zh_tw" + }, + { + "title": "命運/零話", + "source": "YesAsia Taiwan DVD listing", + "url": "https://www.yesasia.com/us/fate-zero-dvd-vol-4-taiwan-version/1032174632-0-0-0-en/info.html", + "confidence": "high", + "region": "zh_tw" + } + ], + "chinese_title_cn": "命运之零", + "chinese_title_hk_mo": null, + "chinese_title_tw": "命運/零話" + }, + { + "type": "anime", + "mal_id": 39535, + "url": "https://myanimelist.net/anime/39535/Mushoku_Tensei__Isekai_Ittara_Honki_Dasu", + "rank": 295, + "popularity": 84, + "score": 8.33, + "members": 1577557, + "year": 2021, + "default_title": "Mushoku Tensei: Isekai Ittara Honki Dasu", + "english_title": "Mushoku Tensei: Jobless Reincarnation", + "cjk_title": "無職転生 ~異世界行ったら本気だす~", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "無職転生 ~異世界行ったら本気だす~" + ], + "latin_titles": [ + "Mushoku Tensei: Isekai Ittara Honki Dasu", + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Jobless Reincarnation", + "Mushoku Tensei: Jobless Reincarnation", + "Mushoku Tensei: Jobless Reincarnation" + ], + "titles": [ + { + "type": "Default", + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu" + }, + { + "type": "Synonym", + "title": "Jobless Reincarnation: I Will Seriously Try If I Go To Another World" + }, + { + "type": "Japanese", + "title": "無職転生 ~異世界行ったら本気だす~" + }, + { + "type": "English", + "title": "Mushoku Tensei: Jobless Reincarnation" + }, + { + "type": "German", + "title": "Mushoku Tensei: Jobless Reincarnation" + }, + { + "type": "French", + "title": "Mushoku Tensei: Jobless Reincarnation" + } + ], + "aliases": [ + "Mushoku Tensei: Isekai Ittara Honki Dasu", + "Mushoku Tensei: Jobless Reincarnation", + "無職転生 ~異世界行ったら本気だす~", + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World" + ], + "ids": { + "mal": 39535, + "jikan": 39535 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q111549837" + ], + "chinese_titles": [ + { + "title": "无职转生 ~到了异世界就拿出真本事~", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "无职转生:到了异世界就拿出真本事", + "source": "iQIYI", + "url": "https://www.iq.com/play/2byvpq52pk8", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese streaming title." + }, + { + "title": "無職轉生~到了異世界就拿出真本事~", + "source": "Bilibili Hong Kong/Macau/Taiwan", + "url": "https://www.bilibili.com/bangumi/play/ss37762", + "confidence": "high", + "region": "zh_hk_mo", + "note": "Regional Bilibili page marked for Hong Kong, Macau, and Taiwan." + }, + { + "title": "無職轉生,到了異世界就拿出真本事", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=20620", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan streaming title." + }, + { + "title": "無職轉生~到了異世界就拿出真本事~第一季", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q111549837", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan label for season 1." + }, + { + "title": "無職轉生~到了異世界就拿出真本事~第一季", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q111549837", + "confidence": "medium" + }, + { + "title": "无职转生 ~到了异世界就拿出真本事~", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "무직전생 ~이세계에 갔으면 최선을 다한다~", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q111549837" + }, + { + "title": "무직전생 ~이세계에 갔으면 최선을 다한다~", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q111549837", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 108465, + "chinese_title": "無職轉生~到了異世界就拿出真本事~第一季", + "korean_title": "무직전생 ~이세계에 갔으면 최선을 다한다~", + "chinese_titles_cn": [ + { + "title": "无职转生 ~到了异世界就拿出真本事~", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "无职转生:到了异世界就拿出真本事", + "source": "iQIYI", + "url": "https://www.iq.com/play/2byvpq52pk8", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese streaming title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "無職轉生~到了異世界就拿出真本事~", + "source": "Bilibili Hong Kong/Macau/Taiwan", + "url": "https://www.bilibili.com/bangumi/play/ss37762", + "confidence": "high", + "region": "zh_hk_mo", + "note": "Regional Bilibili page marked for Hong Kong, Macau, and Taiwan." + } + ], + "chinese_titles_tw": [ + { + "title": "無職轉生,到了異世界就拿出真本事", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=20620", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan streaming title." + }, + { + "title": "無職轉生~到了異世界就拿出真本事~第一季", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q111549837", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan label for season 1." + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "无职转生 ~到了异世界就拿出真本事~", + "chinese_title_hk_mo": "無職轉生~到了異世界就拿出真本事~", + "chinese_title_tw": "無職轉生,到了異世界就拿出真本事" + }, + { + "type": "anime", + "mal_id": 30654, + "url": "https://myanimelist.net/anime/30654/Ansatsu_Kyoushitsu_2nd_Season", + "rank": 177, + "popularity": 86, + "score": 8.47, + "members": 1570600, + "year": 2016, + "default_title": "Ansatsu Kyoushitsu 2nd Season", + "english_title": "Assassination Classroom Second Season", + "cjk_title": "暗殺教室 第2期", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "暗殺教室 第2期" + ], + "latin_titles": [ + "Ansatsu Kyoushitsu 2nd Season", + "Ansatsu Kyoushitsu Season 2", + "Ansatsu Kyoushitsu Final Season", + "Assassination Classroom Second Season", + "Assassination Classroom Staffel 2", + "Assassination Classroom Temporada 2", + "Assassination Classroom Saison 2" + ], + "titles": [ + { + "type": "Default", + "title": "Ansatsu Kyoushitsu 2nd Season" + }, + { + "type": "Synonym", + "title": "Ansatsu Kyoushitsu Season 2" + }, + { + "type": "Synonym", + "title": "Ansatsu Kyoushitsu Final Season" + }, + { + "type": "Japanese", + "title": "暗殺教室 第2期" + }, + { + "type": "English", + "title": "Assassination Classroom Second Season" + }, + { + "type": "German", + "title": "Assassination Classroom Staffel 2" + }, + { + "type": "Spanish", + "title": "Assassination Classroom Temporada 2" + }, + { + "type": "French", + "title": "Assassination Classroom Saison 2" + } + ], + "aliases": [ + "Ansatsu Kyoushitsu 2nd Season", + "Assassination Classroom Second Season", + "暗殺教室 第2期", + "Ansatsu Kyoushitsu Season 2", + "Ansatsu Kyoushitsu Final Season", + "Assassination Classroom Staffel 2", + "Assassination Classroom Temporada 2", + "Assassination Classroom Saison 2" + ], + "ids": { + "mal": 30654, + "jikan": 30654 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "anilist_id": 21170, + "chinese_title": null, + "korean_title": "암살교실 2기", + "chinese_titles_cn": [ + { + "title": "暗杀教室 第二季", + "source": "Bangumi", + "url": "https://bangumi.tv/subject/131891", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese database title." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "暗殺教室 第二季", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=33650", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan streaming title." + } + ], + "korean_titles": [ + { + "title": "암살교실 2기", + "source": "WatchaPedia", + "url": "https://pedia.watcha.com/ko-KR/contents/tRWB4OE", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No real Hong Kong/Macau-specific Chinese title was found for the second season." + ], + "chinese_titles": [ + { + "title": "暗杀教室 第二季", + "source": "Bangumi", + "url": "https://bangumi.tv/subject/131891", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese database title." + }, + { + "title": "暗殺教室 第二季", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=33650", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan streaming title." + } + ], + "chinese_title_cn": "暗杀教室 第二季", + "chinese_title_hk_mo": null, + "chinese_title_tw": "暗殺教室 第二季" + }, + { + "type": "anime", + "mal_id": 14813, + "url": "https://myanimelist.net/anime/14813/Yahari_Ore_no_Seishun_Love_Comedy_wa_Machigatteiru", + "rank": 762, + "popularity": 85, + "score": 8, + "members": 1570555, + "year": 2013, + "default_title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru.", + "english_title": "My Teen Romantic Comedy SNAFU", + "cjk_title": "やはり俺の青春ラブコメはまちがっている。", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "やはり俺の青春ラブコメはまちがっている。" + ], + "latin_titles": [ + "Yahari Ore no Seishun Love Comedy wa Machigatteiru.", + "Oregairu", + "My youth romantic comedy is wrong as I expected.", + "My Teen Romantic Comedy SNAFU", + "My Teen Romantic Comedy SNAFU", + "My Teen Romantic Comedy SNAFU", + "My Teen Romantic Comedy SNAFU" + ], + "titles": [ + { + "type": "Default", + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru." + }, + { + "type": "Synonym", + "title": "Oregairu" + }, + { + "type": "Synonym", + "title": "My youth romantic comedy is wrong as I expected." + }, + { + "type": "Japanese", + "title": "やはり俺の青春ラブコメはまちがっている。" + }, + { + "type": "English", + "title": "My Teen Romantic Comedy SNAFU" + }, + { + "type": "German", + "title": "My Teen Romantic Comedy SNAFU" + }, + { + "type": "Spanish", + "title": "My Teen Romantic Comedy SNAFU" + }, + { + "type": "French", + "title": "My Teen Romantic Comedy SNAFU" + } + ], + "aliases": [ + "Yahari Ore no Seishun Love Comedy wa Machigatteiru.", + "My Teen Romantic Comedy SNAFU", + "やはり俺の青春ラブコメはまちがっている。", + "Oregairu", + "My youth romantic comedy is wrong as I expected." + ], + "ids": { + "mal": 14813, + "jikan": 14813 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q17052242" + ], + "chinese_titles": [ + { + "title": "我的青春恋爱物语果然有问题", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的青春恋爱物语果然有问题。", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ss1539", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China streaming title." + }, + { + "title": "果然我的青春戀愛喜劇搞錯了。", + "source": "ANIHK", + "url": "https://anihk.com/anime/my-teen-romantic-comedy-snafu", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Hong Kong anime database title." + }, + { + "title": "果然我的青春戀愛喜劇搞錯了。", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=16396", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan streaming title for the anime series." + }, + { + "title": "果然我的青春戀愛喜劇搞錯了。", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q17052242", + "confidence": "medium" + }, + { + "title": "我的青春恋爱物语果然有问题", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "anilist_id": 14813, + "chinese_title": "果然我的青春戀愛喜劇搞錯了。", + "korean_title": "역시 내 청춘 러브코메디는 잘못됐다.", + "chinese_titles_cn": [ + { + "title": "我的青春恋爱物语果然有问题", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "我的青春恋爱物语果然有问题。", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ss1539", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China streaming title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "果然我的青春戀愛喜劇搞錯了。", + "source": "ANIHK", + "url": "https://anihk.com/anime/my-teen-romantic-comedy-snafu", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Hong Kong anime database title." + } + ], + "chinese_titles_tw": [ + { + "title": "果然我的青春戀愛喜劇搞錯了。", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=16396", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan streaming title for the anime series." + } + ], + "korean_titles": [ + { + "title": "역시 내 청춘 러브코메디는 잘못됐다.", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/역시_내_청춘_러브코메디는_잘못됐다.", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "我的青春恋爱物语果然有问题", + "chinese_title_hk_mo": "果然我的青春戀愛喜劇搞錯了。", + "chinese_title_tw": "果然我的青春戀愛喜劇搞錯了。" + }, + { + "type": "anime", + "mal_id": 28891, + "url": "https://myanimelist.net/anime/28891/Haikyuu_Second_Season", + "rank": 101, + "popularity": 87, + "score": 8.62, + "members": 1568912, + "year": 2015, + "default_title": "Haikyuu!! Second Season", + "english_title": "Haikyu!! 2nd Season", + "cjk_title": "ハイキュー!! セカンドシーズン", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ハイキュー!! セカンドシーズン" + ], + "latin_titles": [ + "Haikyuu!! Second Season", + "Haikyuu!! Second Season", + "Haikyu!! 2nd Season", + "Haikyu!! Staffel 2", + "Haikyu!! Los Ases del Vóley Temporada 2", + "Haikyu!! Saison 2" + ], + "titles": [ + { + "type": "Default", + "title": "Haikyuu!! Second Season" + }, + { + "type": "Synonym", + "title": "Haikyuu!! Second Season" + }, + { + "type": "Japanese", + "title": "ハイキュー!! セカンドシーズン" + }, + { + "type": "English", + "title": "Haikyu!! 2nd Season" + }, + { + "type": "German", + "title": "Haikyu!! Staffel 2" + }, + { + "type": "Spanish", + "title": "Haikyu!! Los Ases del Vóley Temporada 2" + }, + { + "type": "French", + "title": "Haikyu!! Saison 2" + } + ], + "aliases": [ + "Haikyuu!! Second Season", + "Haikyu!! 2nd Season", + "ハイキュー!! セカンドシーズン", + "Haikyu!! Staffel 2", + "Haikyu!! Los Ases del Vóley Temporada 2", + "Haikyu!! Saison 2" + ], + "ids": { + "mal": 28891, + "jikan": 28891 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q97304394" + ], + "anilist_id": 20992, + "chinese_title": null, + "korean_title": "하이큐!! 세컨드 시즌", + "chinese_titles_cn": [ + { + "title": "排球少年 第二季", + "source": "Anibase", + "url": "https://anibase.net/en/anime/lyK81/HAIKYU%21%21-2nd-Season", + "confidence": "medium", + "region": "zh_cn", + "note": "Chinese database title." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "排球少年!!第二季", + "source": "Bahamut ACG", + "url": "https://acg.gamer.com.tw/acgDetail.php?s=74666", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan anime database title." + }, + { + "title": "排球少年!!Second Season", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/排球少年!!_(動畫)", + "confidence": "high", + "region": "zh_tw", + "note": "Chinese Wikipedia anime season title." + } + ], + "korean_titles": [ + { + "title": "하이큐!! 세컨드 시즌", + "source": "WatchaPedia", + "url": "https://pedia.watcha.com/ko-KR/contents/tEg8pmR", + "confidence": "high", + "region": "ko" + } + ], + "title_enrichment_notes": [ + "No real Hong Kong/Macau-specific Chinese title was found for the second season." + ], + "chinese_titles": [ + { + "title": "排球少年 第二季", + "source": "Anibase", + "url": "https://anibase.net/en/anime/lyK81/HAIKYU%21%21-2nd-Season", + "confidence": "medium", + "region": "zh_cn", + "note": "Chinese database title." + }, + { + "title": "排球少年!!第二季", + "source": "Bahamut ACG", + "url": "https://acg.gamer.com.tw/acgDetail.php?s=74666", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan anime database title." + }, + { + "title": "排球少年!!Second Season", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/排球少年!!_(動畫)", + "confidence": "high", + "region": "zh_tw", + "note": "Chinese Wikipedia anime season title." + } + ], + "chinese_title_cn": "排球少年 第二季", + "chinese_title_hk_mo": null, + "chinese_title_tw": "排球少年!!第二季" + }, + { + "type": "anime", + "mal_id": 48583, + "url": "https://myanimelist.net/anime/48583/Shingeki_no_Kyojin__The_Final_Season_Part_2", + "rank": 46, + "popularity": 88, + "score": 8.77, + "members": 1563350, + "year": 2022, + "default_title": "Shingeki no Kyojin: The Final Season Part 2", + "english_title": "Attack on Titan: Final Season Part 2", + "cjk_title": "進撃の巨人 The Final Season Part 2", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "進撃の巨人 The Final Season Part 2" + ], + "latin_titles": [ + "Shingeki no Kyojin: The Final Season Part 2", + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4", + "Attack on Titan: Final Season Part 2" + ], + "titles": [ + { + "type": "Default", + "title": "Shingeki no Kyojin: The Final Season Part 2" + }, + { + "type": "Synonym", + "title": "Shingeki no Kyojin Season 4" + }, + { + "type": "Synonym", + "title": "Attack on Titan Season 4" + }, + { + "type": "Japanese", + "title": "進撃の巨人 The Final Season Part 2" + }, + { + "type": "English", + "title": "Attack on Titan: Final Season Part 2" + } + ], + "aliases": [ + "Shingeki no Kyojin: The Final Season Part 2", + "Attack on Titan: Final Season Part 2", + "進撃の巨人 The Final Season Part 2", + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "ids": { + "mal": 48583, + "jikan": 48583 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "mixed CJK+Latin title string", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q100332172" + ], + "anilist_id": 131681, + "chinese_title": null, + "korean_title": "진격의 거인 더 파이널 시즌 파트 2", + "chinese_titles_cn": [ + { + "title": "进击的巨人 最终季 Part.2", + "source": "Anibase", + "url": "https://anibase.net/en/anime/1qLMm/Attack-on-Titan-Final-Season-Part-2", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese database title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "進擊的巨人 The Final Season Part 2", + "source": "Bilibili Hong Kong/Macau/Taiwan", + "url": "https://www.bilibili.com/bangumi/play/ss40713", + "confidence": "high", + "region": "zh_hk_mo", + "note": "Regional Bilibili page marked for Hong Kong, Macau, and Taiwan." + } + ], + "chinese_titles_tw": [ + { + "title": "進擊的巨人 The Final Season Part 2", + "source": "Bilibili Hong Kong/Macau/Taiwan", + "url": "https://www.bilibili.com/bangumi/play/ss40713", + "confidence": "high", + "region": "zh_tw", + "note": "Regional Bilibili page marked for Hong Kong, Macau, and Taiwan." + }, + { + "title": "進擊的巨人 第四季:The Final Season Part 2", + "source": "YourAnimes", + "url": "https://youranimes.tw/animes/2143/onair", + "confidence": "medium", + "region": "zh_tw", + "note": "Taiwan anime broadcast listing." + } + ], + "korean_titles": [ + { + "title": "진격의 거인 더 파이널 시즌 파트 2", + "source": "Anibase", + "url": "https://anibase.net/en/anime/1qLMm/Attack-on-Titan-Final-Season-Part-2", + "confidence": "medium", + "region": "ko" + }, + { + "title": "진격의 거인: 파이널 시즌 파트 2", + "source": "Hypebeast Korea", + "url": "https://hypebeast.kr/2021/6/attack-on-titan-the-final-season-part-2-first-teaser-info", + "confidence": "medium", + "region": "ko" + } + ], + "title_enrichment_notes": [], + "chinese_titles": [ + { + "title": "进击的巨人 最终季 Part.2", + "source": "Anibase", + "url": "https://anibase.net/en/anime/1qLMm/Attack-on-Titan-Final-Season-Part-2", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese database title." + }, + { + "title": "進擊的巨人 The Final Season Part 2", + "source": "Bilibili Hong Kong/Macau/Taiwan", + "url": "https://www.bilibili.com/bangumi/play/ss40713", + "confidence": "high", + "region": "zh_hk_mo", + "note": "Regional Bilibili page marked for Hong Kong, Macau, and Taiwan." + }, + { + "title": "進擊的巨人 The Final Season Part 2", + "source": "Bilibili Hong Kong/Macau/Taiwan", + "url": "https://www.bilibili.com/bangumi/play/ss40713", + "confidence": "high", + "region": "zh_tw", + "note": "Regional Bilibili page marked for Hong Kong, Macau, and Taiwan." + }, + { + "title": "進擊的巨人 第四季:The Final Season Part 2", + "source": "YourAnimes", + "url": "https://youranimes.tw/animes/2143/onair", + "confidence": "medium", + "region": "zh_tw", + "note": "Taiwan anime broadcast listing." + } + ], + "chinese_title_cn": "进击的巨人 最终季 Part.2", + "chinese_title_hk_mo": "進擊的巨人 The Final Season Part 2", + "chinese_title_tw": "進擊的巨人 The Final Season Part 2" + }, + { + "type": "anime", + "mal_id": 121, + "url": "https://myanimelist.net/anime/121/Fullmetal_Alchemist", + "rank": 566, + "popularity": 89, + "score": 8.12, + "members": 1559415, + "year": 2003, + "default_title": "Fullmetal Alchemist", + "english_title": "Fullmetal Alchemist", + "cjk_title": "鋼の錬金術師", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "鋼の錬金術師" + ], + "latin_titles": [ + "Fullmetal Alchemist", + "Hagane no Renkinjutsushi", + "FMA", + "Full Metal Alchemist", + "Fullmetal Alchemist" + ], + "titles": [ + { + "type": "Default", + "title": "Fullmetal Alchemist" + }, + { + "type": "Synonym", + "title": "Hagane no Renkinjutsushi" + }, + { + "type": "Synonym", + "title": "FMA" + }, + { + "type": "Synonym", + "title": "Full Metal Alchemist" + }, + { + "type": "Japanese", + "title": "鋼の錬金術師" + }, + { + "type": "English", + "title": "Fullmetal Alchemist" + } + ], + "aliases": [ + "Fullmetal Alchemist", + "鋼の錬金術師", + "Hagane no Renkinjutsushi", + "FMA", + "Full Metal Alchemist" + ], + "ids": { + "mal": 121, + "jikan": 121 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q711257" + ], + "chinese_titles": [ + { + "title": "钢之炼金术师", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q711257", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "鋼之鍊金術師", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q711257", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "鋼之鍊金術師", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鋼之鍊金術師_(動畫)", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "鋼之鍊金術師 (動畫)", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E9%8B%BC%E4%B9%8B%E9%8D%8A%E9%87%91%E8%A1%93%E5%B8%AB_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium" + }, + { + "title": "鋼之鍊金術師", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q711257", + "confidence": "medium" + }, + { + "title": "钢之鍊金术师", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q711257", + "confidence": "medium" + }, + { + "title": "钢之炼金术师", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q711257", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "강철의 연금술사 (애니메이션)", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EA%B0%95%EC%B2%A0%EC%9D%98_%EC%97%B0%EA%B8%88%EC%88%A0%EC%82%AC_%28%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98%29" + }, + { + "title": "강철의 연금술사", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q711257" + }, + { + "title": "강철의 연금술사", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q711257", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 121, + "chinese_title": "鋼之鍊金術師 (動畫)", + "korean_title": "강철의 연금술사 (애니메이션)", + "chinese_titles_cn": [ + { + "title": "钢之炼金术师", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q711257", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "鋼之鍊金術師", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q711257", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "鋼之鍊金術師", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鋼之鍊金術師_(動畫)", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "钢之炼金术师", + "chinese_title_hk_mo": "鋼之鍊金術師", + "chinese_title_tw": "鋼之鍊金術師" + }, + { + "type": "anime", + "mal_id": 30503, + "url": "https://myanimelist.net/anime/30503/Noragami_Aragoto", + "rank": 542, + "popularity": 90, + "score": 8.14, + "members": 1557674, + "year": 2015, + "default_title": "Noragami Aragoto", + "english_title": "Noragami Aragoto", + "cjk_title": "ノラガミ ARAGOTO", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ノラガミ ARAGOTO" + ], + "latin_titles": [ + "Noragami Aragoto", + "Noragami Aragoto" + ], + "titles": [ + { + "type": "Default", + "title": "Noragami Aragoto" + }, + { + "type": "Japanese", + "title": "ノラガミ ARAGOTO" + }, + { + "type": "English", + "title": "Noragami Aragoto" + } + ], + "aliases": [ + "Noragami Aragoto", + "ノラガミ ARAGOTO" + ], + "ids": { + "mal": 30503, + "jikan": 30503 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q120119784" + ], + "korean_titles": [ + { + "title": "노라가미 ARAGOTO", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q120119784" + }, + { + "title": "노라가미 ARAGOTO", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q120119784", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 21128, + "chinese_title": null, + "korean_title": "노라가미 ARAGOTO", + "chinese_titles_cn": [ + { + "title": "野良神 ARAGOTO", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/流浪神差", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China title for season 2." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "流浪神差II", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/流浪神差", + "confidence": "high", + "region": "zh_hk_mo", + "note": "Hong Kong title for season 2." + } + ], + "chinese_titles_tw": [ + { + "title": "流浪神差 ARAGOTO", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/流浪神差", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan title for season 2." + } + ], + "title_enrichment_notes": [], + "chinese_titles": [ + { + "title": "野良神 ARAGOTO", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/流浪神差", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China title for season 2." + }, + { + "title": "流浪神差II", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/流浪神差", + "confidence": "high", + "region": "zh_hk_mo", + "note": "Hong Kong title for season 2." + }, + { + "title": "流浪神差 ARAGOTO", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/流浪神差", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan title for season 2." + } + ], + "chinese_title_cn": "野良神 ARAGOTO", + "chinese_title_hk_mo": "流浪神差II", + "chinese_title_tw": "流浪神差 ARAGOTO" + }, + { + "type": "anime", + "mal_id": 31478, + "url": "https://myanimelist.net/anime/31478/Bungou_Stray_Dogs", + "rank": 1184, + "popularity": 91, + "score": 7.8, + "members": 1555069, + "year": 2016, + "default_title": "Bungou Stray Dogs", + "english_title": "Bungo Stray Dogs", + "cjk_title": "文豪ストレイドッグス", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "文豪ストレイドッグス" + ], + "latin_titles": [ + "Bungou Stray Dogs", + "Literary Stray Dogs", + "BSD", + "Bungo Stray Dogs", + "Bungo Stray Dogs", + "Bungo Stray Dogs", + "Bungo Stray Dogs" + ], + "titles": [ + { + "type": "Default", + "title": "Bungou Stray Dogs" + }, + { + "type": "Synonym", + "title": "Literary Stray Dogs" + }, + { + "type": "Synonym", + "title": "BSD" + }, + { + "type": "Japanese", + "title": "文豪ストレイドッグス" + }, + { + "type": "English", + "title": "Bungo Stray Dogs" + }, + { + "type": "German", + "title": "Bungo Stray Dogs" + }, + { + "type": "Spanish", + "title": "Bungo Stray Dogs" + }, + { + "type": "French", + "title": "Bungo Stray Dogs" + } + ], + "aliases": [ + "Bungou Stray Dogs", + "Bungo Stray Dogs", + "文豪ストレイドッグス", + "Literary Stray Dogs", + "BSD" + ], + "ids": { + "mal": 31478, + "jikan": 31478 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q64028322" + ], + "korean_titles": [ + { + "title": "문호 스트레이 독스", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q64028322" + }, + { + "title": "문호 스트레이 독스", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q64028322", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 21311, + "chinese_title": null, + "korean_title": "문호 스트레이 독스", + "chinese_titles_cn": [ + { + "title": "文豪野犬", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/文豪Stray_Dogs", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "文豪Stray Dogs", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/文豪Stray_Dogs", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Hong Kong publisher listed with Taiwan Kadokawa title." + } + ], + "chinese_titles_tw": [ + { + "title": "文豪Stray Dogs", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/文豪Stray_Dogs", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan title." + } + ], + "title_enrichment_notes": [], + "chinese_titles": [ + { + "title": "文豪野犬", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/文豪Stray_Dogs", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China title." + }, + { + "title": "文豪Stray Dogs", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/文豪Stray_Dogs", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Hong Kong publisher listed with Taiwan Kadokawa title." + }, + { + "title": "文豪Stray Dogs", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/文豪Stray_Dogs", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan title." + } + ], + "chinese_title_cn": "文豪野犬", + "chinese_title_hk_mo": "文豪Stray Dogs", + "chinese_title_tw": "文豪Stray Dogs" + }, + { + "type": "anime", + "mal_id": 34599, + "url": "https://myanimelist.net/anime/34599/Made_in_Abyss", + "rank": 103, + "popularity": 92, + "score": 8.62, + "members": 1553935, + "year": 2017, + "default_title": "Made in Abyss", + "english_title": "Made in Abyss", + "cjk_title": "メイドインアビス", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "メイドインアビス" + ], + "latin_titles": [ + "Made in Abyss", + "Made in Abyss" + ], + "titles": [ + { + "type": "Default", + "title": "Made in Abyss" + }, + { + "type": "Japanese", + "title": "メイドインアビス" + }, + { + "type": "English", + "title": "Made in Abyss" + } + ], + "aliases": [ + "Made in Abyss", + "メイドインアビス" + ], + "ids": { + "mal": 34599, + "jikan": 34599 + }, + "complexity_reasons": [ + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q61853333" + ], + "chinese_titles": [ + { + "title": "来自深渊", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ss34543", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese title appears on a related official movie page." + }, + { + "title": "來自深淵", + "source": "Flixboss Hong Kong Netflix listing", + "url": "https://hk.flixboss.com/series/made-in-abyss-80193163", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Hong Kong Netflix-region listing." + }, + { + "title": "來自深淵", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q61853333", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "來自深淵 (動畫)", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E4%BE%86%E8%87%AA%E6%B7%B1%E6%B7%B5_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium" + }, + { + "title": "來自深淵", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q61853333", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "메이드 인 어비스", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q61853333" + }, + { + "title": "메이드 인 어비스", + "source": "Apple TV Korea", + "url": "https://tv.apple.com/kr/show/메이드-인-어비스/umc.cmc.6uks2o76ygoq8na988wo4ehx4", + "confidence": "high", + "region": "ko" + }, + { + "title": "메이드 인 어비스", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q61853333", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 97986, + "chinese_title": "來自深淵 (動畫)", + "korean_title": "메이드 인 어비스", + "chinese_titles_cn": [ + { + "title": "来自深渊", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ss34543", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese title appears on a related official movie page." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "來自深淵", + "source": "Flixboss Hong Kong Netflix listing", + "url": "https://hk.flixboss.com/series/made-in-abyss-80193163", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Hong Kong Netflix-region listing." + } + ], + "chinese_titles_tw": [ + { + "title": "來自深淵", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q61853333", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "来自深渊", + "chinese_title_hk_mo": "來自深淵", + "chinese_title_tw": "來自深淵" + }, + { + "type": "anime", + "mal_id": 38671, + "url": "https://myanimelist.net/anime/38671/Enen_no_Shouboutai", + "rank": 1399, + "popularity": 93, + "score": 7.72, + "members": 1546871, + "year": 2019, + "default_title": "Enen no Shouboutai", + "english_title": "Fire Force", + "cjk_title": "炎炎ノ消防隊", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "炎炎ノ消防隊" + ], + "latin_titles": [ + "Enen no Shouboutai", + "Fire Brigade of Flames", + "Fire Force", + "Fire Force", + "Fire Force", + "Fire Force" + ], + "titles": [ + { + "type": "Default", + "title": "Enen no Shouboutai" + }, + { + "type": "Synonym", + "title": "Fire Brigade of Flames" + }, + { + "type": "Japanese", + "title": "炎炎ノ消防隊" + }, + { + "type": "English", + "title": "Fire Force" + }, + { + "type": "German", + "title": "Fire Force" + }, + { + "type": "Spanish", + "title": "Fire Force" + }, + { + "type": "French", + "title": "Fire Force" + } + ], + "aliases": [ + "Enen no Shouboutai", + "Fire Force", + "炎炎ノ消防隊", + "Fire Brigade of Flames" + ], + "ids": { + "mal": 38671, + "jikan": 38671 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q96377950" + ], + "chinese_titles": [ + { + "title": "炎炎消防队", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ep330405", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China streaming title for the series." + }, + { + "title": "炎炎消防隊", + "source": "ANIHK", + "url": "https://anihk.com/anime/fire-force", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Hong Kong anime database title." + }, + { + "title": "炎炎消防隊", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=29922", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan streaming title." + }, + { + "title": "炎炎消防隊", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q96377950", + "confidence": "medium" + } + ], + "anilist_id": 105310, + "chinese_title": "炎炎消防隊", + "korean_title": "불꽃 소방대", + "chinese_titles_cn": [ + { + "title": "炎炎消防队", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ep330405", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China streaming title for the series." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "炎炎消防隊", + "source": "ANIHK", + "url": "https://anihk.com/anime/fire-force", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Hong Kong anime database title." + } + ], + "chinese_titles_tw": [ + { + "title": "炎炎消防隊", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=29922", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan streaming title." + } + ], + "korean_titles": [ + { + "title": "불꽃 소방대", + "source": "NamuWiki", + "url": "https://namu.moe/w/불꽃%20소방대", + "confidence": "medium", + "region": "ko", + "note": "Korean page title; the page records 염염의 소방대 as a redirect." + }, + { + "title": "염염의 소방대", + "source": "NamuWiki redirect", + "url": "https://namu.moe/w/불꽃%20소방대?from=염염의%20소방대", + "confidence": "medium", + "region": "ko", + "note": "Recorded redirect/alternate Korean title." + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "炎炎消防队", + "chinese_title_hk_mo": "炎炎消防隊", + "chinese_title_tw": "炎炎消防隊" + }, + { + "type": "anime", + "mal_id": 11617, + "url": "https://myanimelist.net/anime/11617/High_School_DxD", + "rank": 3200, + "popularity": 94, + "score": 7.32, + "members": 1539010, + "year": 2012, + "default_title": "High School DxD", + "english_title": "High School DxD", + "cjk_title": "ハイスクールD×D", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "ハイスクールD×D" + ], + "latin_titles": [ + "High School DxD", + "Highschool DxD", + "High School DxD", + "Highschool DxD" + ], + "titles": [ + { + "type": "Default", + "title": "High School DxD" + }, + { + "type": "Synonym", + "title": "Highschool DxD" + }, + { + "type": "Japanese", + "title": "ハイスクールD×D" + }, + { + "type": "English", + "title": "High School DxD" + }, + { + "type": "German", + "title": "Highschool DxD" + } + ], + "aliases": [ + "High School DxD", + "ハイスクールD×D", + "Highschool DxD" + ], + "ids": { + "mal": 11617, + "jikan": 11617 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "mixed CJK+Latin title string", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q65078212" + ], + "anilist_id": 11617, + "chinese_title": null, + "korean_title": "하이스쿨 DxD", + "chinese_titles_cn": [ + { + "title": "恶魔高校D×D", + "source": "Chinese Wikipedia converted title", + "url": "https://zh.wikipedia.org/wiki/惡魔高校D×D", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese conversion of the Chinese Wikipedia title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "惡魔高校D×D", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/惡魔高校D×D", + "confidence": "high", + "region": "zh_hk_mo", + "note": "Chinese Wikipedia lists Taiwan and Hong Kong publisher distribution under this title." + } + ], + "chinese_titles_tw": [ + { + "title": "惡魔高校D×D", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/惡魔高校D×D", + "confidence": "high", + "region": "zh_tw" + } + ], + "korean_titles": [ + { + "title": "하이스쿨 DxD", + "source": "WatchaPedia", + "url": "https://pedia.watcha.com/ko-KR/contents/tRzZDkR", + "confidence": "high", + "region": "ko" + }, + { + "title": "하이스쿨 D×D", + "source": "NamuWiki", + "url": "https://namu.moe/w/하이스쿨%20D×D", + "confidence": "medium", + "region": "ko" + } + ], + "title_enrichment_notes": [], + "chinese_titles": [ + { + "title": "恶魔高校D×D", + "source": "Chinese Wikipedia converted title", + "url": "https://zh.wikipedia.org/wiki/惡魔高校D×D", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese conversion of the Chinese Wikipedia title." + }, + { + "title": "惡魔高校D×D", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/惡魔高校D×D", + "confidence": "high", + "region": "zh_hk_mo", + "note": "Chinese Wikipedia lists Taiwan and Hong Kong publisher distribution under this title." + }, + { + "title": "惡魔高校D×D", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/惡魔高校D×D", + "confidence": "high", + "region": "zh_tw" + } + ], + "chinese_title_cn": "恶魔高校D×D", + "chinese_title_hk_mo": "惡魔高校D×D", + "chinese_title_tw": "惡魔高校D×D" + }, + { + "type": "anime", + "mal_id": 40591, + "url": "https://myanimelist.net/anime/40591/Kaguya-sama_wa_Kokurasetai_Tensai-tachi_no_Renai_Zunousen", + "rank": 109, + "popularity": 96, + "score": 8.61, + "members": 1502837, + "year": 2020, + "default_title": "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", + "english_title": "Kaguya-sama: Love is War?", + "cjk_title": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~" + ], + "latin_titles": [ + "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", + "Kaguya-sama: Love is War 2nd Season", + "Kaguya-sama: Love is War?", + "Kaguya-sama: Love Is War Staffel 2", + "Kaguya-sama: Love Is War? Temporada 2", + "Kaguya-sama: Love is War Saison 2" + ], + "titles": [ + { + "type": "Default", + "title": "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen" + }, + { + "type": "Synonym", + "title": "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season" + }, + { + "type": "Synonym", + "title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season" + }, + { + "type": "Synonym", + "title": "Kaguya-sama: Love is War 2nd Season" + }, + { + "type": "Japanese", + "title": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~" + }, + { + "type": "English", + "title": "Kaguya-sama: Love is War?" + }, + { + "type": "German", + "title": "Kaguya-sama: Love Is War Staffel 2" + }, + { + "type": "Spanish", + "title": "Kaguya-sama: Love Is War? Temporada 2" + }, + { + "type": "French", + "title": "Kaguya-sama: Love is War Saison 2" + } + ], + "aliases": [ + "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", + "Kaguya-sama: Love is War?", + "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", + "Kaguya-sama: Love is War 2nd Season", + "Kaguya-sama: Love Is War Staffel 2", + "Kaguya-sama: Love Is War? Temporada 2", + "Kaguya-sama: Love is War Saison 2" + ], + "ids": { + "mal": 40591, + "jikan": 40591 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q102364905" + ], + "chinese_titles": [ + { + "title": "辉夜大小姐想让我告白~天才们的恋爱头脑战~第二季", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 2", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "辉夜大小姐想让我告白?~天才们的恋爱头脑战~", + "source": "Chinese Wikipedia regional title block", + "url": "https://zh.wikipedia.org/wiki/輝夜姬想讓人告白~天才們的戀愛頭腦戰~_(動畫)", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China title for season 2." + }, + { + "title": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", + "source": "Chinese Wikipedia regional title block", + "url": "https://zh.wikipedia.org/wiki/輝夜姬想讓人告白~天才們的戀愛頭腦戰~_(動畫)", + "confidence": "high", + "region": "zh_hk_mo", + "note": "Hong Kong and Macau title for season 2." + }, + { + "title": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", + "source": "Chinese Wikipedia regional title block", + "url": "https://zh.wikipedia.org/wiki/輝夜姬想讓人告白~天才們的戀愛頭腦戰~_(動畫)", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan title for season 2." + }, + { + "title": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q102364905", + "confidence": "medium" + }, + { + "title": "辉夜大小姐想让我告白~天才们的恋爱头脑战~第二季", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + }, + { + "title": "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 2", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "anilist_id": 112641, + "chinese_title": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", + "korean_title": "카구야 님은 고백받고 싶어 2기", + "chinese_titles_cn": [ + { + "title": "辉夜大小姐想让我告白~天才们的恋爱头脑战~第二季", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 2", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "辉夜大小姐想让我告白?~天才们的恋爱头脑战~", + "source": "Chinese Wikipedia regional title block", + "url": "https://zh.wikipedia.org/wiki/輝夜姬想讓人告白~天才們的戀愛頭腦戰~_(動畫)", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China title for season 2." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", + "source": "Chinese Wikipedia regional title block", + "url": "https://zh.wikipedia.org/wiki/輝夜姬想讓人告白~天才們的戀愛頭腦戰~_(動畫)", + "confidence": "high", + "region": "zh_hk_mo", + "note": "Hong Kong and Macau title for season 2." + } + ], + "chinese_titles_tw": [ + { + "title": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", + "source": "Chinese Wikipedia regional title block", + "url": "https://zh.wikipedia.org/wiki/輝夜姬想讓人告白~天才們的戀愛頭腦戰~_(動畫)", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan title for season 2." + } + ], + "korean_titles": [ + { + "title": "카구야 님은 고백받고 싶어 2기", + "source": "KakaoTV", + "url": "https://tv.kakao.com/v/408679381", + "confidence": "medium", + "region": "ko", + "note": "Korean title with season marker appears in a Korean video listing." + }, + { + "title": "카구야 님은 고백받고 싶어 ~천재들의 연애 두뇌전~", + "source": "WatchaPedia", + "url": "https://pedia.watcha.com/ko-KR/contents/tlYeZO4", + "confidence": "high", + "region": "ko", + "note": "Korean series title." + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "辉夜大小姐想让我告白~天才们的恋爱头脑战~第二季", + "chinese_title_hk_mo": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", + "chinese_title_tw": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~" + }, + { + "type": "anime", + "mal_id": 5081, + "url": "https://myanimelist.net/anime/5081/Bakemonogatari", + "rank": 302, + "popularity": 97, + "score": 8.32, + "members": 1493023, + "year": 2009, + "default_title": "Bakemonogatari", + "english_title": "Bakemonogatari", + "cjk_title": "化物語", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "化物語" + ], + "latin_titles": [ + "Bakemonogatari", + "Ghostory", + "Monstory", + "Bakemonogatari" + ], + "titles": [ + { + "type": "Default", + "title": "Bakemonogatari" + }, + { + "type": "Synonym", + "title": "Ghostory" + }, + { + "type": "Synonym", + "title": "Monstory" + }, + { + "type": "Japanese", + "title": "化物語" + }, + { + "type": "English", + "title": "Bakemonogatari" + } + ], + "aliases": [ + "Bakemonogatari", + "化物語", + "Ghostory", + "Monstory" + ], + "ids": { + "mal": 5081, + "jikan": 5081 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q124309985" + ], + "chinese_titles": [ + { + "title": "化物语", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "化物语", + "source": "Chinese Wikipedia converted title", + "url": "https://zh.wikipedia.org/wiki/化物語", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese conversion of the shared title." + }, + { + "title": "化物語", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q124309985", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "化物語", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q124309985", + "confidence": "medium" + }, + { + "title": "化物语", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "바케모노가타리", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q124309985" + }, + { + "title": "괴물 이야기", + "language": "ko", + "source": "wikidata_alt_label", + "source_url": "https://www.wikidata.org/wiki/Q124309985" + }, + { + "title": "바케모노가타리", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q124309985", + "confidence": "high", + "region": "ko" + }, + { + "title": "괴물 이야기", + "source": "Wikidata ko alt label", + "url": "https://www.wikidata.org/wiki/Q124309985", + "confidence": "medium", + "region": "ko" + } + ], + "anilist_id": 5081, + "chinese_title": "化物語", + "korean_title": "바케모노가타리", + "chinese_titles_cn": [ + { + "title": "化物语", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "化物语", + "source": "Chinese Wikipedia converted title", + "url": "https://zh.wikipedia.org/wiki/化物語", + "confidence": "medium", + "region": "zh_cn", + "note": "Simplified Chinese conversion of the shared title." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "化物語", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q124309985", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [ + "No real Hong Kong/Macau-specific Chinese title was found." + ], + "chinese_title_cn": "化物语", + "chinese_title_hk_mo": null, + "chinese_title_tw": "化物語" + }, + { + "type": "anime", + "mal_id": 6746, + "url": "https://myanimelist.net/anime/6746/Durarara", + "rank": 610, + "popularity": 98, + "score": 8.09, + "members": 1492899, + "year": 2010, + "default_title": "Durarara!!", + "english_title": "Durarara!!", + "cjk_title": "デュラララ!!", + "cjk_scripts": [ + "japanese_kana" + ], + "cjk_titles": [ + "デュラララ!!" + ], + "latin_titles": [ + "Durarara!!", + "Dhurarara!!", + "Dyurarara!!", + "Dulalala!!", + "Dullalala!!", + "DRRR!!", + "Durarara!!" + ], + "titles": [ + { + "type": "Default", + "title": "Durarara!!" + }, + { + "type": "Synonym", + "title": "Dhurarara!!" + }, + { + "type": "Synonym", + "title": "Dyurarara!!" + }, + { + "type": "Synonym", + "title": "Dulalala!!" + }, + { + "type": "Synonym", + "title": "Dullalala!!" + }, + { + "type": "Synonym", + "title": "DRRR!!" + }, + { + "type": "Japanese", + "title": "デュラララ!!" + }, + { + "type": "English", + "title": "Durarara!!" + } + ], + "aliases": [ + "Durarara!!", + "デュラララ!!", + "Dhurarara!!", + "Dyurarara!!", + "Dulalala!!", + "Dullalala!!", + "DRRR!!" + ], + "ids": { + "mal": 6746, + "jikan": 6746 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q131587684" + ], + "anilist_id": 6746, + "chinese_title": null, + "korean_title": "듀라라라!!", + "chinese_titles_cn": [ + { + "title": "无头骑士异闻录", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ss1656", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China streaming title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "無頭騎士異聞錄 DuRaRaRa!!", + "source": "Rakuten Kobo Hong Kong", + "url": "https://www.kobo.com/hk/en/ebook/durarara-6", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Hong Kong ebook storefront title for the same franchise." + } + ], + "chinese_titles_tw": [ + { + "title": "無頭騎士異聞錄 DuRaRaRa!!", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/無頭騎士異聞錄_DuRaRaRa!!", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "無頭騎士異聞錄 DuRaRaRa!!", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=4616", + "confidence": "medium", + "region": "zh_tw", + "note": "Bahamut page for a later anime installment uses the franchise title." + } + ], + "korean_titles": [ + { + "title": "듀라라라!!", + "source": "NamuWiki", + "url": "https://namu.moe/w/듀라라라!!", + "confidence": "medium", + "region": "ko" + }, + { + "title": "듀라라라!!", + "source": "Watcha", + "url": "https://watcha.com/ko-KR/contents/tEK11kP", + "confidence": "medium", + "region": "ko", + "note": "Watcha page for a later anime installment uses the franchise title." + } + ], + "title_enrichment_notes": [], + "chinese_titles": [ + { + "title": "无头骑士异闻录", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ss1656", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China streaming title." + }, + { + "title": "無頭騎士異聞錄 DuRaRaRa!!", + "source": "Rakuten Kobo Hong Kong", + "url": "https://www.kobo.com/hk/en/ebook/durarara-6", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Hong Kong ebook storefront title for the same franchise." + }, + { + "title": "無頭騎士異聞錄 DuRaRaRa!!", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/無頭騎士異聞錄_DuRaRaRa!!", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "無頭騎士異聞錄 DuRaRaRa!!", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=4616", + "confidence": "medium", + "region": "zh_tw", + "note": "Bahamut page for a later anime installment uses the franchise title." + } + ], + "chinese_title_cn": "无头骑士异闻录", + "chinese_title_hk_mo": "無頭騎士異聞錄 DuRaRaRa!!", + "chinese_title_tw": "無頭騎士異聞錄 DuRaRaRa!!" + }, + { + "type": "anime", + "mal_id": 431, + "url": "https://myanimelist.net/anime/431/Howl_no_Ugoku_Shiro", + "rank": 80, + "popularity": 99, + "score": 8.67, + "members": 1492172, + "year": null, + "default_title": "Howl no Ugoku Shiro", + "english_title": "Howl's Moving Castle", + "cjk_title": "ハウルの動く城", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "ハウルの動く城" + ], + "latin_titles": [ + "Howl no Ugoku Shiro", + "Howl's Moving Castle", + "Das wandelnde Schloss", + "El Castillo Ambulante", + "Le Château ambulant" + ], + "titles": [ + { + "type": "Default", + "title": "Howl no Ugoku Shiro" + }, + { + "type": "Japanese", + "title": "ハウルの動く城" + }, + { + "type": "English", + "title": "Howl's Moving Castle" + }, + { + "type": "German", + "title": "Das wandelnde Schloss" + }, + { + "type": "Spanish", + "title": "El Castillo Ambulante" + }, + { + "type": "French", + "title": "Le Château ambulant" + } + ], + "aliases": [ + "Howl no Ugoku Shiro", + "Howl's Moving Castle", + "ハウルの動く城", + "Das wandelnde Schloss", + "El Castillo Ambulante", + "Le Château ambulant" + ], + "ids": { + "mal": 431, + "jikan": 431 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q29011" + ], + "chinese_titles": [ + { + "title": "哈尔的移动城堡", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "哈爾移動城堡", + "source": "Wikidata zh-hk and zh-mo labels", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "high", + "region": "zh_hk_mo" + }, + { + "title": "霍爾的移動城堡", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "哈尔的移动城堡", + "source": "zhwiki_sitelink", + "url": "https://zh.wikipedia.org/wiki/%E5%93%88%E5%B0%94%E7%9A%84%E7%A7%BB%E5%8A%A8%E5%9F%8E%E5%A0%A1", + "confidence": "medium" + }, + { + "title": "霍爾的移動城堡", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "medium" + }, + { + "title": "哈尔移动城堡", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "medium" + }, + { + "title": "霍尔的移动城堡", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "medium" + }, + { + "title": "哈爾的移動城堡", + "source": "wikidata_alt_label", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "medium" + }, + { + "title": "哈爾移動城堡", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "하울의 움직이는 성 (영화)", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%ED%95%98%EC%9A%B8%EC%9D%98_%EC%9B%80%EC%A7%81%EC%9D%B4%EB%8A%94_%EC%84%B1_%28%EC%98%81%ED%99%94%29" + }, + { + "title": "하울의 움직이는 성", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q29011" + }, + { + "title": "하울의 움직이는 성", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 431, + "chinese_title": "哈尔的移动城堡", + "korean_title": "하울의 움직이는 성 (영화)", + "chinese_titles_cn": [ + { + "title": "哈尔的移动城堡", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "哈爾移動城堡", + "source": "Wikidata zh-hk and zh-mo labels", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "high", + "region": "zh_hk_mo" + } + ], + "chinese_titles_tw": [ + { + "title": "霍爾的移動城堡", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "哈尔的移动城堡", + "chinese_title_hk_mo": "哈爾移動城堡", + "chinese_title_tw": "霍爾的移動城堡" + }, + { + "type": "anime", + "mal_id": 12189, + "url": "https://myanimelist.net/anime/12189/Hyouka", + "rank": 677, + "popularity": 100, + "score": 8.05, + "members": 1481401, + "year": 2012, + "default_title": "Hyouka", + "english_title": "Hyouka", + "cjk_title": "氷菓", + "cjk_scripts": [ + "han" + ], + "cjk_titles": [ + "氷菓" + ], + "latin_titles": [ + "Hyouka", + "Hyou-ka", + "Hyouka: You can't escape", + "Hyou-ka: You can't escape", + "Hyoka", + "Hyouka" + ], + "titles": [ + { + "type": "Default", + "title": "Hyouka" + }, + { + "type": "Synonym", + "title": "Hyou-ka" + }, + { + "type": "Synonym", + "title": "Hyouka: You can't escape" + }, + { + "type": "Synonym", + "title": "Hyou-ka: You can't escape" + }, + { + "type": "Synonym", + "title": "Hyoka" + }, + { + "type": "Japanese", + "title": "氷菓" + }, + { + "type": "English", + "title": "Hyouka" + } + ], + "aliases": [ + "Hyouka", + "氷菓", + "Hyou-ka", + "Hyouka: You can't escape", + "Hyou-ka: You can't escape", + "Hyoka" + ], + "ids": { + "mal": 12189, + "jikan": 12189 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:06Z", + "wikidata_ids": [ + "Q99853668" + ], + "korean_titles": [ + { + "title": "빙과 (애니메이션)", + "language": "ko", + "source": "kowiki_sitelink", + "source_url": "https://ko.wikipedia.org/wiki/%EB%B9%99%EA%B3%BC_%28%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98%29" + }, + { + "title": "빙과", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q99853668" + }, + { + "title": "빙과", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q99853668", + "confidence": "high", + "region": "ko" + }, + { + "title": "빙과", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/빙과_(애니메이션)", + "confidence": "high", + "region": "ko" + } + ], + "chinese_titles": [ + { + "title": "冰菓", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ep84779", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China streaming title." + }, + { + "title": "冰菓", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=100", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan streaming title." + }, + { + "title": "冰菓", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q99853668", + "confidence": "medium" + } + ], + "anilist_id": 12189, + "chinese_title": "冰菓", + "korean_title": "빙과 (애니메이션)", + "chinese_titles_cn": [ + { + "title": "冰菓", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ep84779", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China streaming title." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "冰菓", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=100", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan streaming title." + } + ], + "title_enrichment_notes": [ + "No real Hong Kong/Macau-specific Chinese title was found." + ], + "chinese_title_cn": "冰菓", + "chinese_title_hk_mo": null, + "chinese_title_tw": "冰菓" + }, + { + "type": "anime", + "mal_id": 35507, + "url": "https://myanimelist.net/anime/35507/Youkoso_Jitsuryoku_Shijou_Shugi_no_Kyoushitsu_e", + "rank": 1124, + "popularity": 101, + "score": 7.83, + "members": 1469427, + "year": 2017, + "default_title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "english_title": "Classroom of the Elite", + "cjk_title": "ようこそ実力至上主義の教室へ", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "ようこそ実力至上主義の教室へ" + ], + "latin_titles": [ + "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "Welcome to the Classroom of the Elite", + "You-jitsu", + "You-zitsu", + "Classroom of the Elite", + "Classroom of the Elite", + "Classroom of the Elite", + "Classroom of the Elite" + ], + "titles": [ + { + "type": "Default", + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e" + }, + { + "type": "Synonym", + "title": "Welcome to the Classroom of the Elite" + }, + { + "type": "Synonym", + "title": "You-jitsu" + }, + { + "type": "Synonym", + "title": "You-zitsu" + }, + { + "type": "Japanese", + "title": "ようこそ実力至上主義の教室へ" + }, + { + "type": "English", + "title": "Classroom of the Elite" + }, + { + "type": "German", + "title": "Classroom of the Elite" + }, + { + "type": "Spanish", + "title": "Classroom of the Elite" + }, + { + "type": "French", + "title": "Classroom of the Elite" + } + ], + "aliases": [ + "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "Classroom of the Elite", + "ようこそ実力至上主義の教室へ", + "Welcome to the Classroom of the Elite", + "You-jitsu", + "You-zitsu" + ], + "ids": { + "mal": 35507, + "jikan": 35507 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:08Z", + "wikidata_ids": [ + "Q111554130" + ], + "anilist_id": 98659, + "chinese_titles": [ + { + "title": "歡迎來到實力至上主義的教室", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "欢迎来到实力至上主义的教室", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ep113358", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China streaming title." + }, + { + "title": "歡迎來到實力至上主義的教室", + "source": "ANIHK", + "url": "https://anihk.com/anime/classroom-of-the-elite", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Hong Kong anime database title." + }, + { + "title": "歡迎來到實力至上主義的教室", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=8542", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan streaming title." + }, + { + "title": "歡迎來到實力至上主義的教室", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "歡迎來到實力至上主義的教室", + "korean_title": "어서 오세요 실력 지상주의 교실에", + "chinese_titles_cn": [ + { + "title": "歡迎來到實力至上主義的教室", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "欢迎来到实力至上主义的教室", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ep113358", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China streaming title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "歡迎來到實力至上主義的教室", + "source": "ANIHK", + "url": "https://anihk.com/anime/classroom-of-the-elite", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Hong Kong anime database title." + } + ], + "chinese_titles_tw": [ + { + "title": "歡迎來到實力至上主義的教室", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=8542", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan streaming title." + } + ], + "korean_titles": [ + { + "title": "어서 오세요 실력 지상주의 교실에", + "source": "Apple TV Korea", + "url": "https://tv.apple.com/kr/show/어서-오세요-실력-지상주의-교실에/umc.cmc.514ygmczvweqazs5ppmftdyle", + "confidence": "high", + "region": "ko" + }, + { + "title": "어서 오세요 실력지상주의 교실에", + "source": "Yes24", + "url": "https://www.yes24.com/product/goods/147562279", + "confidence": "high", + "region": "ko", + "note": "Korean book title for the source franchise." + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "歡迎來到實力至上主義的教室", + "chinese_title_hk_mo": "歡迎來到實力至上主義的教室", + "chinese_title_tw": "歡迎來到實力至上主義的教室" + }, + { + "type": "anime", + "mal_id": 14741, + "url": "https://myanimelist.net/anime/14741/Chuunibyou_demo_Koi_ga_Shitai", + "rank": 1460, + "popularity": 102, + "score": 7.7, + "members": 1466153, + "year": 2012, + "default_title": "Chuunibyou demo Koi ga Shitai!", + "english_title": "Love, Chunibyo & Other Delusions!", + "cjk_title": "中二病でも恋がしたい!", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "中二病でも恋がしたい!" + ], + "latin_titles": [ + "Chuunibyou demo Koi ga Shitai!", + "Chu-2 Byo demo Koi ga Shitai!", + "Regardless of My Adolescent Delusions of Grandeur", + "I Want a Date!", + "Love, Chunibyo & Other Delusions!", + "Love, Chunibyo & Other Delusions!", + "Love, Chunibyo & Other Delusions", + "Love, Chunibyo & Other Delusions!" + ], + "titles": [ + { + "type": "Default", + "title": "Chuunibyou demo Koi ga Shitai!" + }, + { + "type": "Synonym", + "title": "Chu-2 Byo demo Koi ga Shitai!" + }, + { + "type": "Synonym", + "title": "Regardless of My Adolescent Delusions of Grandeur" + }, + { + "type": "Synonym", + "title": "I Want a Date!" + }, + { + "type": "Japanese", + "title": "中二病でも恋がしたい!" + }, + { + "type": "English", + "title": "Love, Chunibyo & Other Delusions!" + }, + { + "type": "German", + "title": "Love, Chunibyo & Other Delusions!" + }, + { + "type": "Spanish", + "title": "Love, Chunibyo & Other Delusions" + }, + { + "type": "French", + "title": "Love, Chunibyo & Other Delusions!" + } + ], + "aliases": [ + "Chuunibyou demo Koi ga Shitai!", + "Love, Chunibyo & Other Delusions!", + "中二病でも恋がしたい!", + "Chu-2 Byo demo Koi ga Shitai!", + "Regardless of My Adolescent Delusions of Grandeur", + "I Want a Date!", + "Love, Chunibyo & Other Delusions" + ], + "ids": { + "mal": 14741, + "jikan": 14741 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "season/part/number marker", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:08Z", + "wikidata_ids": [ + "Q106935358" + ], + "anilist_id": 14741, + "chinese_titles": [ + { + "title": "中二病也要谈恋爱!", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "中二病也要谈恋爱", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/中二病也想談戀愛!_(動畫)", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China title." + }, + { + "title": "中二病也想談戀愛!", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/中二病也想談戀愛!_(動畫)", + "confidence": "high", + "region": "zh_hk_mo", + "note": "Hong Kong title." + }, + { + "title": "中二病也想談戀愛!", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/中二病也想談戀愛!_(動畫)", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan title." + }, + { + "title": "中二病也要谈恋爱!", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium" + } + ], + "chinese_title": "中二病也要谈恋爱!", + "korean_title": "중2병이라도 사랑이 하고 싶어!", + "chinese_titles_cn": [ + { + "title": "中二病也要谈恋爱!", + "source": "anilist_synonym", + "url": "https://anilist.co/search/anime", + "confidence": "medium", + "region": "zh_cn" + }, + { + "title": "中二病也要谈恋爱", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/中二病也想談戀愛!_(動畫)", + "confidence": "high", + "region": "zh_cn", + "note": "Mainland China title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "中二病也想談戀愛!", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/中二病也想談戀愛!_(動畫)", + "confidence": "high", + "region": "zh_hk_mo", + "note": "Hong Kong title." + } + ], + "chinese_titles_tw": [ + { + "title": "中二病也想談戀愛!", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/中二病也想談戀愛!_(動畫)", + "confidence": "high", + "region": "zh_tw", + "note": "Taiwan title." + } + ], + "korean_titles": [ + { + "title": "중2병이라도 사랑이 하고 싶어!", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/중2병이라도_사랑이_하고_싶어!", + "confidence": "medium", + "region": "ko" + } + ], + "title_enrichment_notes": [], + "chinese_title_cn": "中二病也要谈恋爱!", + "chinese_title_hk_mo": "中二病也想談戀愛!", + "chinese_title_tw": "中二病也想談戀愛!" + }, + { + "type": "anime", + "mal_id": 26243, + "url": "https://myanimelist.net/anime/26243/Owari_no_Seraph", + "rank": 2331, + "popularity": 103, + "score": 7.49, + "members": 1455550, + "year": 2015, + "default_title": "Owari no Seraph", + "english_title": "Seraph of the End: Vampire Reign", + "cjk_title": "終わりのセラフ", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "終わりのセラフ" + ], + "latin_titles": [ + "Owari no Seraph", + "Seraph of the End", + "Seraph of the End: Vampire Reign", + "Seraph of the End: Vampire Reign", + "Seraph of the End: El Reino de los Vampiros", + "Seraph of the End: Vampire Reign" + ], + "titles": [ + { + "type": "Default", + "title": "Owari no Seraph" + }, + { + "type": "Synonym", + "title": "Seraph of the End" + }, + { + "type": "Japanese", + "title": "終わりのセラフ" + }, + { + "type": "English", + "title": "Seraph of the End: Vampire Reign" + }, + { + "type": "German", + "title": "Seraph of the End: Vampire Reign" + }, + { + "type": "Spanish", + "title": "Seraph of the End: El Reino de los Vampiros" + }, + { + "type": "French", + "title": "Seraph of the End: Vampire Reign" + } + ], + "aliases": [ + "Owari no Seraph", + "Seraph of the End: Vampire Reign", + "終わりのセラフ", + "Seraph of the End", + "Seraph of the End: El Reino de los Vampiros" + ], + "ids": { + "mal": 26243, + "jikan": 26243 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:08Z", + "wikidata_ids": [ + "Q64711220" + ], + "chinese_titles": [ + { + "title": "终结的炽天使", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q64711220", + "confidence": "high", + "region": "zh_cn" + }, + { + "title": "終結的熾天使", + "source": "Wikidata zh-hant label", + "url": "https://www.wikidata.org/wiki/Q64711220", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Traditional Chinese title; no Hong Kong/Macau-only variant found." + }, + { + "title": "終結的熾天使", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/終結的熾天使", + "confidence": "high", + "region": "zh_tw" + }, + { + "title": "終結的熾天使", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q64711220", + "confidence": "medium" + }, + { + "title": "终结的炽天使", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q64711220", + "confidence": "medium" + } + ], + "korean_titles": [ + { + "title": "종말의 세라프", + "language": "ko", + "source": "wikidata_label", + "source_url": "https://www.wikidata.org/wiki/Q64711220" + }, + { + "title": "종말의 세라프", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q64711220", + "confidence": "high", + "region": "ko" + } + ], + "anilist_id": 20829, + "chinese_title": "終結的熾天使", + "korean_title": "종말의 세라프", + "chinese_titles_cn": [ + { + "title": "终结的炽天使", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q64711220", + "confidence": "high", + "region": "zh_cn" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "終結的熾天使", + "source": "Wikidata zh-hant label", + "url": "https://www.wikidata.org/wiki/Q64711220", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Traditional Chinese title; no Hong Kong/Macau-only variant found." + } + ], + "chinese_titles_tw": [ + { + "title": "終結的熾天使", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/終結的熾天使", + "confidence": "high", + "region": "zh_tw" + } + ], + "title_enrichment_notes": [ + "No Hong Kong/Macau-only Chinese title was found; the traditional Chinese title is recorded instead." + ], + "chinese_title_cn": "终结的炽天使", + "chinese_title_hk_mo": "終結的熾天使", + "chinese_title_tw": "終結的熾天使" + }, + { + "type": "anime", + "mal_id": 52991, + "url": "https://myanimelist.net/anime/52991/Sousou_no_Frieren", + "rank": 1, + "popularity": 104, + "score": 9.27, + "members": 1441117, + "year": 2023, + "default_title": "Sousou no Frieren", + "english_title": "Frieren: Beyond Journey's End", + "cjk_title": "葬送のフリーレン", + "cjk_scripts": [ + "japanese_kana", + "han" + ], + "cjk_titles": [ + "葬送のフリーレン" + ], + "latin_titles": [ + "Sousou no Frieren", + "Frieren at the Funeral", + "Frieren The Slayer", + "Frieren: Beyond Journey's End" + ], + "titles": [ + { + "type": "Default", + "title": "Sousou no Frieren" + }, + { + "type": "Synonym", + "title": "Frieren at the Funeral" + }, + { + "type": "Synonym", + "title": "Frieren The Slayer" + }, + { + "type": "Japanese", + "title": "葬送のフリーレン" + }, + { + "type": "English", + "title": "Frieren: Beyond Journey's End" + } + ], + "aliases": [ + "Sousou no Frieren", + "Frieren: Beyond Journey's End", + "葬送のフリーレン", + "Frieren at the Funeral", + "Frieren The Slayer" + ], + "ids": { + "mal": 52991, + "jikan": 52991 + }, + "complexity_reasons": [ + "5+ MAL title entries", + "multiple Latin/English aliases", + "CJK and Latin title coverage", + "punctuation/subtitle markers", + "English title differs from default romanized title", + "native/CJK title differs from default title", + "high-popularity MAL entry" + ], + "source": "Jikan /v4/top/anime filter=bypopularity, backed by MyAnimeList", + "captured_at_utc": "2026-05-19T05:14:08Z", + "wikidata_ids": [ + "Q130377145" + ], + "chinese_titles": [ + { + "title": "葬送的芙莉蓮", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/葬送的芙莉蓮_(動畫)", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Chinese Wikipedia records Hong Kong television airing but does not distinguish a Hong Kong-only title." + }, + { + "title": "葬送的芙莉蓮", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/葬送的芙莉蓮_(動畫)", + "confidence": "high", + "region": "zh_tw", + "note": "Chinese Wikipedia records Taiwan television airing under this title." + }, + { + "title": "葬送的芙莉蓮", + "source": "wikidata_label", + "url": "https://www.wikidata.org/wiki/Q130377145", + "confidence": "medium" + } + ], + "anilist_id": 154587, + "korean_titles": [ + { + "title": "장송의 프리렌", + "language": "ko", + "source": "anilist_synonym", + "source_url": "https://anilist.co/search/anime" + }, + { + "title": "장송의 프리렌", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/장송의_프리렌", + "confidence": "high", + "region": "ko" + } + ], + "chinese_title": "葬送的芙莉蓮", + "korean_title": "장송의 프리렌", + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [ + { + "title": "葬送的芙莉蓮", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/葬送的芙莉蓮_(動畫)", + "confidence": "medium", + "region": "zh_hk_mo", + "note": "Chinese Wikipedia records Hong Kong television airing but does not distinguish a Hong Kong-only title." + } + ], + "chinese_titles_tw": [ + { + "title": "葬送的芙莉蓮", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/葬送的芙莉蓮_(動畫)", + "confidence": "high", + "region": "zh_tw", + "note": "Chinese Wikipedia records Taiwan television airing under this title." + } + ], + "title_enrichment_notes": [ + "No source-backed Mainland China regional title was found." + ], + "chinese_title_cn": null, + "chinese_title_hk_mo": "葬送的芙莉蓮", + "chinese_title_tw": "葬送的芙莉蓮" + } + ], + "enrichment": { + "captured_at_utc": "2026-05-19T05:35:10Z", + "sources": [ + "Wikidata SPARQL by MyAnimeList anime ID (P4086)", + "Chinese and Korean Wikipedia sitelinks exposed through Wikidata", + "AniList GraphQL idMal_in title synonyms", + "Chinese and Korean Wikipedia search top result for remaining gaps" + ], + "coverage": { + "samples": 100, + "with_chinese_cn": 89, + "with_chinese_hk_mo": 54, + "with_chinese_tw": 80, + "with_any_chinese": 100, + "with_korean": 100 + }, + "merged_at_utc": "2026-05-19T06:07:29Z", + "regional_chinese_fields": [ + "chinese_titles_cn", + "chinese_titles_hk_mo", + "chinese_titles_tw" + ], + "shards": [ + { + "path": "tools/search_eval/samples/title_enrichment_shard_01.json", + "shard": "01", + "range": [ + 1, + 20 + ] + }, + { + "path": "tools/search_eval/samples/title_enrichment_shard_02.json", + "shard": "02", + "range": [ + 21, + 40 + ] + }, + { + "path": "tools/search_eval/samples/title_enrichment_shard_03.json", + "shard": "03", + "range": [ + 41, + 60 + ] + }, + { + "path": "tools/search_eval/samples/title_enrichment_shard_04.json", + "shard": "04", + "range": [ + 61, + 80 + ] + }, + { + "path": "tools/search_eval/samples/title_enrichment_shard_05.json", + "shard": "05", + "range": [ + 81, + 100 + ] + }, + { + "path": "tools/search_eval/samples/title_enrichment_shard_manual.json", + "shard": "manual", + "range": [ + 1, + 100 + ] + } + ] + } +} diff --git a/tools/search_eval/samples/title_enrichment_shard_01.json b/tools/search_eval/samples/title_enrichment_shard_01.json new file mode 100644 index 0000000..e29ff0b --- /dev/null +++ b/tools/search_eval/samples/title_enrichment_shard_01.json @@ -0,0 +1,488 @@ +{ + "shard": "01", + "range": [1, 20], + "items": [ + { + "sample_index": 1, + "mal_id": 16498, + "default_title": "Shingeki no Kyojin", + "cjk_title": "進撃の巨人", + "chinese_titles": [ + {"title": "进击的巨人", "source": "Wikidata zh-cn label", "url": "https://www.wikidata.org/wiki/Q22126305", "confidence": "high"}, + {"title": "進擊的巨人", "source": "Wikidata zh-hk/zh-tw labels", "url": "https://www.wikidata.org/wiki/Q22126305", "confidence": "high"} + ], + "chinese_titles_cn": [ + {"title": "进击的巨人", "source": "Wikidata zh-cn label", "url": "https://www.wikidata.org/wiki/Q22126305", "confidence": "high"} + ], + "chinese_titles_hk_mo": [ + {"title": "進擊的巨人", "source": "Wikidata zh-hk label", "url": "https://www.wikidata.org/wiki/Q22126305", "confidence": "high"} + ], + "chinese_titles_tw": [ + {"title": "進擊的巨人", "source": "Wikidata zh-tw label", "url": "https://www.wikidata.org/wiki/Q22126305", "confidence": "high"} + ], + "korean_titles": [ + {"title": "진격의 거인", "source": "Korean Wikipedia", "url": "https://ko.wikipedia.org/wiki/%EC%A7%84%EA%B2%A9%EC%9D%98_%EA%B1%B0%EC%9D%B8", "confidence": "high"} + ], + "notes": [] + }, + { + "sample_index": 2, + "mal_id": 1535, + "default_title": "Death Note", + "cjk_title": "デスノート", + "chinese_titles": [ + {"title": "死亡笔记", "source": "Wikidata zh alias", "url": "https://www.wikidata.org/wiki/Q718624", "confidence": "medium", "note": "Generic simplified Chinese alias; no explicit Mainland formal title was found in the checked sources."}, + {"title": "死亡筆記", "source": "Chinese Wikipedia formal Hong Kong title", "url": "https://zh.wikipedia.org/wiki/%E6%AD%BB%E4%BA%A1%E7%AD%86%E8%A8%98", "confidence": "high"}, + {"title": "死亡筆記本", "source": "Chinese Wikipedia formal Taiwan title", "url": "https://zh.wikipedia.org/wiki/%E6%AD%BB%E4%BA%A1%E7%AD%86%E8%A8%98", "confidence": "high"} + ], + "chinese_titles_cn": [ + {"title": "死亡笔记", "source": "Wikidata zh alias", "url": "https://www.wikidata.org/wiki/Q718624", "confidence": "medium", "note": "Generic simplified Chinese alias; no explicit Mainland formal title was found in the checked sources."} + ], + "chinese_titles_hk_mo": [ + {"title": "死亡筆記", "source": "Chinese Wikipedia formal Hong Kong title", "url": "https://zh.wikipedia.org/wiki/%E6%AD%BB%E4%BA%A1%E7%AD%86%E8%A8%98", "confidence": "high"} + ], + "chinese_titles_tw": [ + {"title": "死亡筆記本", "source": "Chinese Wikipedia formal Taiwan title", "url": "https://zh.wikipedia.org/wiki/%E6%AD%BB%E4%BA%A1%E7%AD%86%E8%A8%98", "confidence": "high"} + ], + "korean_titles": [ + {"title": "데스노트", "source": "Korean Wikipedia", "url": "https://ko.wikipedia.org/wiki/%EB%8D%B0%EC%8A%A4%EB%85%B8%ED%8A%B8", "confidence": "high"} + ], + "notes": [] + }, + { + "sample_index": 3, + "mal_id": 5114, + "default_title": "Fullmetal Alchemist: Brotherhood", + "cjk_title": "鋼の錬金術師 FULLMETAL ALCHEMIST", + "chinese_titles": [ + {"title": "钢之炼金术师 FULLMETAL ALCHEMIST", "source": "AniList synonym", "url": "https://anilist.co/anime/5114", "confidence": "medium"}, + {"title": "鋼之鍊金術師 FULLMETAL ALCHEMIST", "source": "Wikidata zh label", "url": "https://www.wikidata.org/wiki/Q437808", "confidence": "medium"}, + {"title": "鋼之鍊金術師FA", "source": "Chinese Wikipedia formal title", "url": "https://zh.wikipedia.org/wiki/%E9%8B%BC%E4%B9%8B%E9%8D%8A%E9%87%91%E8%A1%93%E5%B8%AB_FULLMETAL_ALCHEMIST", "confidence": "medium"} + ], + "chinese_titles_cn": [ + {"title": "钢之炼金术师 FULLMETAL ALCHEMIST", "source": "AniList synonym", "url": "https://anilist.co/anime/5114", "confidence": "medium"} + ], + "chinese_titles_hk_mo": [ + {"title": "鋼之鍊金術師 FULLMETAL ALCHEMIST", "source": "Wikidata zh label", "url": "https://www.wikidata.org/wiki/Q437808", "confidence": "medium"}, + {"title": "鋼之鍊金術師FA", "source": "Chinese Wikipedia formal title", "url": "https://zh.wikipedia.org/wiki/%E9%8B%BC%E4%B9%8B%E9%8D%8A%E9%87%91%E8%A1%93%E5%B8%AB_FULLMETAL_ALCHEMIST", "confidence": "medium"} + ], + "chinese_titles_tw": [ + {"title": "鋼之鍊金術師 FULLMETAL ALCHEMIST", "source": "Wikidata zh label", "url": "https://www.wikidata.org/wiki/Q437808", "confidence": "medium"}, + {"title": "鋼之鍊金術師FA", "source": "Chinese Wikipedia formal title", "url": "https://zh.wikipedia.org/wiki/%E9%8B%BC%E4%B9%8B%E9%8D%8A%E9%87%91%E8%A1%93%E5%B8%AB_FULLMETAL_ALCHEMIST", "confidence": "medium"} + ], + "korean_titles": [ + {"title": "강철의 연금술사 BROTHERHOOD", "source": "Wikidata ko label", "url": "https://www.wikidata.org/wiki/Q437808", "confidence": "high"} + ], + "notes": ["The checked sources did not clearly distinguish Hong Kong/Macau and Taiwan titles for this TV entry."] + }, + { + "sample_index": 4, + "mal_id": 30276, + "default_title": "One Punch Man", + "cjk_title": "ワンパンマン", + "chinese_titles": [ + {"title": "一拳超人", "source": "Chinese Wikipedia official translation", "url": "https://zh.wikipedia.org/wiki/%E4%B8%80%E6%8B%B3%E8%B6%85%E4%BA%BA", "confidence": "high"}, + {"title": "一擊男", "source": "Chinese Wikipedia common translation", "url": "https://zh.wikipedia.org/wiki/%E4%B8%80%E6%8B%B3%E8%B6%85%E4%BA%BA", "confidence": "medium"}, + {"title": "一擊超人", "source": "Chinese Wikipedia common translation", "url": "https://zh.wikipedia.org/wiki/%E4%B8%80%E6%8B%B3%E8%B6%85%E4%BA%BA", "confidence": "medium"} + ], + "chinese_titles_cn": [ + {"title": "一拳超人", "source": "Chinese Wikipedia official translation", "url": "https://zh.wikipedia.org/wiki/%E4%B8%80%E6%8B%B3%E8%B6%85%E4%BA%BA", "confidence": "high"} + ], + "chinese_titles_hk_mo": [ + {"title": "一拳超人", "source": "Wikidata zh-hk label", "url": "https://www.wikidata.org/wiki/Q105081756", "confidence": "high"} + ], + "chinese_titles_tw": [ + {"title": "一拳超人", "source": "Chinese Wikipedia official translation", "url": "https://zh.wikipedia.org/wiki/%E4%B8%80%E6%8B%B3%E8%B6%85%E4%BA%BA", "confidence": "high"} + ], + "korean_titles": [ + {"title": "원펀맨", "source": "Korean Wikipedia", "url": "https://ko.wikipedia.org/wiki/%EC%9B%90%ED%8E%80%EB%A7%A8", "confidence": "high"} + ], + "notes": [] + }, + { + "sample_index": 5, + "mal_id": 38000, + "default_title": "Kimetsu no Yaiba", + "cjk_title": "鬼滅の刃", + "chinese_titles": [ + {"title": "鬼灭之刃", "source": "Wikidata zh-cn label", "url": "https://www.wikidata.org/wiki/Q24862683", "confidence": "high"}, + {"title": "鬼滅之刃", "source": "Wikidata zh-hk/zh-tw labels", "url": "https://www.wikidata.org/wiki/Q24862683", "confidence": "high"}, + {"title": "鬼滅之刃 竈門炭治郎 立志篇", "source": "Wikidata zh label for MAL-matched season entry", "url": "https://www.wikidata.org/wiki/Q105847391", "confidence": "medium"} + ], + "chinese_titles_cn": [ + {"title": "鬼灭之刃", "source": "Wikidata zh-cn label", "url": "https://www.wikidata.org/wiki/Q24862683", "confidence": "high"} + ], + "chinese_titles_hk_mo": [ + {"title": "鬼滅之刃", "source": "Wikidata zh-hk label", "url": "https://www.wikidata.org/wiki/Q24862683", "confidence": "high"} + ], + "chinese_titles_tw": [ + {"title": "鬼滅之刃", "source": "Wikidata zh-tw label", "url": "https://www.wikidata.org/wiki/Q24862683", "confidence": "high"}, + {"title": "鬼滅之刃 竈門炭治郎 立志篇", "source": "Wikidata zh label for MAL-matched season entry", "url": "https://www.wikidata.org/wiki/Q105847391", "confidence": "medium"} + ], + "korean_titles": [ + {"title": "귀멸의 칼날", "source": "Korean Wikipedia", "url": "https://ko.wikipedia.org/wiki/%EA%B7%80%EB%A9%B8%EC%9D%98_%EC%B9%BC%EB%82%A0", "confidence": "high"} + ], + "notes": [] + }, + { + "sample_index": 6, + "mal_id": 31964, + "default_title": "Boku no Hero Academia", + "cjk_title": "僕のヒーローアカデミア", + "chinese_titles": [ + {"title": "我的英雄学园", "source": "Chinese Wikipedia formal Mainland China title", "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", "confidence": "high"}, + {"title": "我的英雄学院", "source": "Chinese Wikipedia formal Hong Kong/Macau/Taiwan title", "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", "confidence": "high"} + ], + "chinese_titles_cn": [ + {"title": "我的英雄学园", "source": "Chinese Wikipedia formal Mainland China title", "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", "confidence": "high"} + ], + "chinese_titles_hk_mo": [ + {"title": "我的英雄学院", "source": "Chinese Wikipedia formal Hong Kong/Macau title", "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", "confidence": "high"} + ], + "chinese_titles_tw": [ + {"title": "我的英雄学院", "source": "Chinese Wikipedia formal Taiwan title", "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", "confidence": "high"} + ], + "korean_titles": [ + {"title": "나의 히어로 아카데미아", "source": "Wikidata ko label", "url": "https://www.wikidata.org/wiki/Q18047903", "confidence": "high"}, + {"title": "나의 히어로 아카데미아 1기", "source": "AniList synonym", "url": "https://anilist.co/anime/21459", "confidence": "medium"} + ], + "notes": [] + }, + { + "sample_index": 7, + "mal_id": 11757, + "default_title": "Sword Art Online", + "cjk_title": "ソードアート・オンライン", + "chinese_titles": [ + {"title": "刀剑神域", "source": "Chinese Wikipedia Mainland China publication table", "url": "https://zh.wikipedia.org/wiki/%E5%88%80%E5%8A%8D%E7%A5%9E%E5%9F%9F", "confidence": "high"}, + {"title": "刀劍神域", "source": "Wikidata zh-hk/zh-tw labels", "url": "https://www.wikidata.org/wiki/Q27863", "confidence": "high"} + ], + "chinese_titles_cn": [ + {"title": "刀剑神域", "source": "Chinese Wikipedia Mainland China publication table", "url": "https://zh.wikipedia.org/wiki/%E5%88%80%E5%8A%8D%E7%A5%9E%E5%9F%9F", "confidence": "high"} + ], + "chinese_titles_hk_mo": [ + {"title": "刀劍神域", "source": "Wikidata zh-hk label", "url": "https://www.wikidata.org/wiki/Q27863", "confidence": "high"} + ], + "chinese_titles_tw": [ + {"title": "刀劍神域", "source": "Wikidata zh-tw label", "url": "https://www.wikidata.org/wiki/Q27863", "confidence": "high"} + ], + "korean_titles": [ + {"title": "소드 아트 온라인", "source": "Wikidata ko label", "url": "https://www.wikidata.org/wiki/Q27863", "confidence": "high"} + ], + "notes": [] + }, + { + "sample_index": 8, + "mal_id": 11061, + "default_title": "Hunter x Hunter (2011)", + "cjk_title": "HUNTER×HUNTER(ハンター×ハンター)", + "chinese_titles": [ + {"title": "HUNTER×HUNTER 獵人", "source": "Chinese Wikipedia formal Taiwan/Mainland title", "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER", "confidence": "high"}, + {"title": "HUNTER×HUNTER", "source": "Chinese Wikipedia formal Hong Kong title", "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER", "confidence": "high"}, + {"title": "全職獵人", "source": "Chinese Wikipedia Hong Kong TV/common title", "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER", "confidence": "high"} + ], + "chinese_titles_cn": [ + {"title": "HUNTER×HUNTER 獵人", "source": "Chinese Wikipedia formal Mainland title", "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER", "confidence": "high"} + ], + "chinese_titles_hk_mo": [ + {"title": "HUNTER×HUNTER", "source": "Chinese Wikipedia formal Hong Kong title", "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER", "confidence": "high"}, + {"title": "全職獵人", "source": "Chinese Wikipedia Hong Kong TV/common title", "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER", "confidence": "high"} + ], + "chinese_titles_tw": [ + {"title": "HUNTER×HUNTER 獵人", "source": "Chinese Wikipedia formal Taiwan title", "url": "https://zh.wikipedia.org/wiki/HUNTER%C3%97HUNTER", "confidence": "high"} + ], + "korean_titles": [ + {"title": "헌터 × 헌터 (2011년 애니메이션)", "source": "Wikidata ko label", "url": "https://www.wikidata.org/wiki/Q70209136", "confidence": "high"}, + {"title": "헌터 × 헌터", "source": "Wikidata ko label for base work", "url": "https://www.wikidata.org/wiki/Q84926", "confidence": "medium"} + ], + "notes": [] + }, + { + "sample_index": 9, + "mal_id": 20, + "default_title": "Naruto", + "cjk_title": "ナルト", + "chinese_titles": [ + {"title": "火影忍者", "source": "Chinese Wikipedia formal Taiwan/Mainland/Hong Kong title", "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85", "confidence": "high"}, + {"title": "狐忍", "source": "Chinese Wikipedia Hong Kong alternate publisher title", "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85", "confidence": "medium"} + ], + "chinese_titles_cn": [ + {"title": "火影忍者", "source": "Chinese Wikipedia formal Mainland China title", "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85", "confidence": "high"} + ], + "chinese_titles_hk_mo": [ + {"title": "火影忍者", "source": "Chinese Wikipedia formal Hong Kong title", "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85", "confidence": "high"}, + {"title": "狐忍", "source": "Chinese Wikipedia Hong Kong alternate publisher title", "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85", "confidence": "medium"} + ], + "chinese_titles_tw": [ + {"title": "火影忍者", "source": "Chinese Wikipedia formal Taiwan title", "url": "https://zh.wikipedia.org/wiki/%E7%81%AB%E5%BD%B1%E5%BF%8D%E8%80%85", "confidence": "high"} + ], + "korean_titles": [ + {"title": "나루토", "source": "Wikidata ko label for base work", "url": "https://www.wikidata.org/wiki/Q9312", "confidence": "high"}, + {"title": "나루토 (애니메이션)", "source": "Wikidata ko label for MAL-matched anime entry", "url": "https://www.wikidata.org/wiki/Q25929253", "confidence": "high"} + ], + "notes": [] + }, + { + "sample_index": 10, + "mal_id": 22319, + "default_title": "Tokyo Ghoul", + "cjk_title": "東京喰種-トーキョーグール-", + "chinese_titles": [ + {"title": "东京食尸鬼", "source": "Chinese Wikipedia formal Mainland China title", "url": "https://zh.wikipedia.org/wiki/%E6%9D%B1%E4%BA%AC%E5%96%B0%E7%A8%AE", "confidence": "high"}, + {"title": "東京喰種", "source": "Chinese Wikipedia formal Hong Kong/Macau/Taiwan title", "url": "https://zh.wikipedia.org/wiki/%E6%9D%B1%E4%BA%AC%E5%96%B0%E7%A8%AE", "confidence": "high"} + ], + "chinese_titles_cn": [ + {"title": "东京食尸鬼", "source": "Chinese Wikipedia formal Mainland China title", "url": "https://zh.wikipedia.org/wiki/%E6%9D%B1%E4%BA%AC%E5%96%B0%E7%A8%AE", "confidence": "high"} + ], + "chinese_titles_hk_mo": [ + {"title": "東京喰種", "source": "Chinese Wikipedia formal Hong Kong/Macau title", "url": "https://zh.wikipedia.org/wiki/%E6%9D%B1%E4%BA%AC%E5%96%B0%E7%A8%AE", "confidence": "high"} + ], + "chinese_titles_tw": [ + {"title": "東京喰種", "source": "Chinese Wikipedia formal Taiwan title", "url": "https://zh.wikipedia.org/wiki/%E6%9D%B1%E4%BA%AC%E5%96%B0%E7%A8%AE", "confidence": "high"} + ], + "korean_titles": [ + {"title": "도쿄 구울", "source": "Wikidata ko label", "url": "https://www.wikidata.org/wiki/Q40239998", "confidence": "high"} + ], + "notes": [] + }, + { + "sample_index": 11, + "mal_id": 40748, + "default_title": "Jujutsu Kaisen", + "cjk_title": "呪術廻戦", + "chinese_titles": [ + {"title": "咒术回战", "source": "Chinese Wikipedia formal Mainland China title", "url": "https://zh.wikipedia.org/wiki/%E5%92%92%E8%A1%93%E8%BF%B4%E6%88%B0", "confidence": "high"}, + {"title": "咒術迴戰", "source": "Chinese Wikipedia formal Hong Kong/Macau/Taiwan title", "url": "https://zh.wikipedia.org/wiki/%E5%92%92%E8%A1%93%E8%BF%B4%E6%88%B0", "confidence": "high"} + ], + "chinese_titles_cn": [ + {"title": "咒术回战", "source": "Chinese Wikipedia formal Mainland China title", "url": "https://zh.wikipedia.org/wiki/%E5%92%92%E8%A1%93%E8%BF%B4%E6%88%B0", "confidence": "high"} + ], + "chinese_titles_hk_mo": [ + {"title": "咒術迴戰", "source": "Chinese Wikipedia formal Hong Kong/Macau title", "url": "https://zh.wikipedia.org/wiki/%E5%92%92%E8%A1%93%E8%BF%B4%E6%88%B0", "confidence": "high"} + ], + "chinese_titles_tw": [ + {"title": "咒術迴戰", "source": "Chinese Wikipedia formal Taiwan title", "url": "https://zh.wikipedia.org/wiki/%E5%92%92%E8%A1%93%E8%BF%B4%E6%88%B0", "confidence": "high"} + ], + "korean_titles": [ + {"title": "주술회전", "source": "Wikidata ko label", "url": "https://www.wikidata.org/wiki/Q55522899", "confidence": "high"} + ], + "notes": [] + }, + { + "sample_index": 12, + "mal_id": 32281, + "default_title": "Kimi no Na wa.", + "cjk_title": "君の名は。", + "chinese_titles": [ + {"title": "你的名字。", "source": "Chinese Wikipedia regional film title list", "url": "https://zh.wikipedia.org/wiki/%E4%BD%A0%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", "confidence": "high"}, + {"title": "你的名字", "source": "Chinese Wikipedia Taiwan alternate distributor title", "url": "https://zh.wikipedia.org/wiki/%E4%BD%A0%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", "confidence": "medium"} + ], + "chinese_titles_cn": [ + {"title": "你的名字。", "source": "Chinese Wikipedia Mainland China title", "url": "https://zh.wikipedia.org/wiki/%E4%BD%A0%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", "confidence": "high"} + ], + "chinese_titles_hk_mo": [ + {"title": "你的名字。", "source": "Chinese Wikipedia Hong Kong/Macau title", "url": "https://zh.wikipedia.org/wiki/%E4%BD%A0%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", "confidence": "high"} + ], + "chinese_titles_tw": [ + {"title": "你的名字。", "source": "Chinese Wikipedia Taiwan distributor title", "url": "https://zh.wikipedia.org/wiki/%E4%BD%A0%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", "confidence": "high"}, + {"title": "你的名字", "source": "Chinese Wikipedia Taiwan alternate distributor title", "url": "https://zh.wikipedia.org/wiki/%E4%BD%A0%E7%9A%84%E5%90%8D%E5%AD%97%E3%80%82", "confidence": "medium"} + ], + "korean_titles": [ + {"title": "너의 이름은.", "source": "Wikidata ko label", "url": "https://www.wikidata.org/wiki/Q21697406", "confidence": "high"}, + {"title": "너의 이름은", "source": "Wikidata ko alias", "url": "https://www.wikidata.org/wiki/Q21697406", "confidence": "medium"} + ], + "notes": [] + }, + { + "sample_index": 13, + "mal_id": 25777, + "default_title": "Shingeki no Kyojin Season 2", + "cjk_title": "進撃の巨人 Season2", + "chinese_titles": [ + {"title": "进击的巨人 第二季", "source": "Bilibili Mainland China media page", "url": "https://www.bilibili.com/bangumi/media/md28230020", "confidence": "high"}, + {"title": "進擊的巨人 第二季", "source": "Bilibili Taiwan media page", "url": "https://www.bilibili.com/bangumi/media/md5970/", "confidence": "high"} + ], + "chinese_titles_cn": [ + {"title": "进击的巨人 第二季", "source": "Bilibili Mainland China media page", "url": "https://www.bilibili.com/bangumi/media/md28230020", "confidence": "high"} + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + {"title": "進擊的巨人 第二季", "source": "Bilibili Taiwan media page", "url": "https://www.bilibili.com/bangumi/media/md5970/", "confidence": "high"} + ], + "korean_titles": [ + {"title": "진격의 거인 2기", "source": "Watcha", "url": "https://watcha.com/ko-KR/contents/tlYym4l", "confidence": "high"} + ], + "notes": ["No source-backed Hong Kong/Macau season-specific Chinese title was found."] + }, + { + "sample_index": 14, + "mal_id": 1735, + "default_title": "Naruto: Shippuuden", + "cjk_title": "-ナルト- 疾風伝", + "chinese_titles": [ + {"title": "火影忍者疾風傳", "source": "Wikidata zh label", "url": "https://www.wikidata.org/wiki/Q12500134", "confidence": "high"}, + {"title": "火影忍者-疾風傳-", "source": "Wikidata zh alias", "url": "https://www.wikidata.org/wiki/Q12500134", "confidence": "medium"}, + {"title": "火影忍者 疾风传", "source": "AniList synonym", "url": "https://anilist.co/anime/1735", "confidence": "medium"} + ], + "chinese_titles_cn": [ + {"title": "火影忍者 疾风传", "source": "AniList synonym", "url": "https://anilist.co/anime/1735", "confidence": "medium"} + ], + "chinese_titles_hk_mo": [ + {"title": "火影忍者疾風傳", "source": "Wikidata zh label", "url": "https://www.wikidata.org/wiki/Q12500134", "confidence": "high"} + ], + "chinese_titles_tw": [ + {"title": "火影忍者疾風傳", "source": "Wikidata zh label", "url": "https://www.wikidata.org/wiki/Q12500134", "confidence": "high"}, + {"title": "火影忍者-疾風傳-", "source": "Wikidata zh alias", "url": "https://www.wikidata.org/wiki/Q12500134", "confidence": "medium"} + ], + "korean_titles": [ + {"title": "나루토 질풍전", "source": "Wikidata ko label", "url": "https://www.wikidata.org/wiki/Q12500134", "confidence": "high"} + ], + "notes": [] + }, + { + "sample_index": 15, + "mal_id": 33486, + "default_title": "Boku no Hero Academia 2nd Season", + "cjk_title": "僕のヒーローアカデミア", + "chinese_titles": [ + {"title": "我的英雄学院 第二季", "source": "Bangumi subject page", "url": "https://bangumi.tv/subject/185761", "confidence": "high"}, + {"title": "我的英雄学院第二季", "source": "AniList synonym", "url": "https://anilist.co/anime/21856", "confidence": "medium"}, + {"title": "我的英雄学院 2", "source": "AniList synonym", "url": "https://anilist.co/anime/21856", "confidence": "medium"} + ], + "chinese_titles_cn": [ + {"title": "我的英雄学院 第二季", "source": "Bangumi subject page", "url": "https://bangumi.tv/subject/185761", "confidence": "high"}, + {"title": "我的英雄学院第二季", "source": "AniList synonym", "url": "https://anilist.co/anime/21856", "confidence": "medium"} + ], + "chinese_titles_hk_mo": [ + {"title": "我的英雄学院 第二季", "source": "Bangumi subject page", "url": "https://bangumi.tv/subject/185761", "confidence": "medium", "note": "Season-specific Chinese title is source-backed, but the checked source does not mark a Hong Kong/Macau variant."} + ], + "chinese_titles_tw": [ + {"title": "我的英雄学院 第二季", "source": "Bangumi subject page", "url": "https://bangumi.tv/subject/185761", "confidence": "medium", "note": "Season-specific Chinese title is source-backed, but the checked source does not mark a Taiwan variant."} + ], + "korean_titles": [ + {"title": "나의 히어로 아카데미아 2기", "source": "AniList synonym", "url": "https://anilist.co/anime/21856", "confidence": "high"}, + {"title": "나히아 2기", "source": "AniList synonym", "url": "https://anilist.co/anime/21856", "confidence": "medium"} + ], + "notes": [] + }, + { + "sample_index": 16, + "mal_id": 35760, + "default_title": "Shingeki no Kyojin Season 3", + "cjk_title": "進撃の巨人 Season3", + "chinese_titles": [ + {"title": "进击的巨人 第三季", "source": "Bangumi tag/search result", "url": "https://bangumi.tv/anime/tag/%E8%BF%9B%E5%87%BB%E7%9A%84%E5%B7%A8%E4%BA%BA", "confidence": "medium"}, + {"title": "進擊的巨人 第三季", "source": "Chinese Wikipedia anime article", "url": "https://zh.wikipedia.org/wiki/%E9%80%B2%E6%93%8A%E7%9A%84%E5%B7%A8%E4%BA%BA_(%E5%8B%95%E7%95%AB)", "confidence": "medium"} + ], + "chinese_titles_cn": [ + {"title": "进击的巨人 第三季", "source": "Bangumi tag/search result", "url": "https://bangumi.tv/anime/tag/%E8%BF%9B%E5%87%BB%E7%9A%84%E5%B7%A8%E4%BA%BA", "confidence": "medium"} + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + {"title": "進擊的巨人 第三季", "source": "Chinese Wikipedia anime article", "url": "https://zh.wikipedia.org/wiki/%E9%80%B2%E6%93%8A%E7%9A%84%E5%B7%A8%E4%BA%BA_(%E5%8B%95%E7%95%AB)", "confidence": "medium"} + ], + "korean_titles": [ + {"title": "진격의 거인 3기 Part 1", "source": "Watcha", "url": "https://watcha.com/ko-KR/contents/tR2Z8jR", "confidence": "high"}, + {"title": "진격의 거인 3기", "source": "Onnada", "url": "https://anime.onnada.com/3942", "confidence": "medium"} + ], + "notes": ["No source-backed Hong Kong/Macau season-specific Chinese title was found."] + }, + { + "sample_index": 17, + "mal_id": 28851, + "default_title": "Koe no Katachi", + "cjk_title": "聲の形", + "chinese_titles": [ + {"title": "声之形", "source": "Wikidata zh-cn label", "url": "https://www.wikidata.org/wiki/Q23925035", "confidence": "high"}, + {"title": "電影 聲之形", "source": "Wikidata zh-tw label", "url": "https://www.wikidata.org/wiki/Q23925035", "confidence": "high"}, + {"title": "電影版 聲之形", "source": "Wikidata zh label", "url": "https://www.wikidata.org/wiki/Q23925035", "confidence": "medium"} + ], + "chinese_titles_cn": [ + {"title": "声之形", "source": "Wikidata zh-cn label", "url": "https://www.wikidata.org/wiki/Q23925035", "confidence": "high"} + ], + "chinese_titles_hk_mo": [ + {"title": "聲之形", "source": "Chinese Wikipedia article title", "url": "https://zh.wikipedia.org/wiki/%E8%81%B2%E4%B9%8B%E5%BD%A2", "confidence": "medium", "note": "Source-backed Chinese title, but no Hong Kong/Macau film-specific variant was found."} + ], + "chinese_titles_tw": [ + {"title": "電影 聲之形", "source": "Wikidata zh-tw label", "url": "https://www.wikidata.org/wiki/Q23925035", "confidence": "high"} + ], + "korean_titles": [ + {"title": "목소리의 형태", "source": "Wikidata ko label", "url": "https://www.wikidata.org/wiki/Q23925035", "confidence": "high"} + ], + "notes": [] + }, + { + "sample_index": 18, + "mal_id": 38524, + "default_title": "Shingeki no Kyojin Season 3 Part 2", + "cjk_title": "進撃の巨人 Season3 Part.2", + "chinese_titles": [ + {"title": "进击的巨人 第三季 Part.2", "source": "Bangumi subject page", "url": "https://bangumi.tv/subject/263750", "confidence": "high"}, + {"title": "進擊的巨人 第三季 Part.2", "source": "Bilibili Taiwan media page", "url": "https://www.bilibili.com/bangumi/play/ss26963", "confidence": "high"} + ], + "chinese_titles_cn": [ + {"title": "进击的巨人 第三季 Part.2", "source": "Bangumi subject page", "url": "https://bangumi.tv/subject/263750", "confidence": "high"} + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + {"title": "進擊的巨人 第三季 Part.2", "source": "Bilibili Taiwan media page", "url": "https://www.bilibili.com/bangumi/play/ss26963", "confidence": "high"} + ], + "korean_titles": [ + {"title": "진격의 거인 3기 Part 2", "source": "Watcha", "url": "https://watcha.com/ko-KR/contents/tlxkdZk", "confidence": "high"} + ], + "notes": ["No source-backed Hong Kong/Macau season-specific Chinese title was found."] + }, + { + "sample_index": 19, + "mal_id": 19815, + "default_title": "No Game No Life", + "cjk_title": "ノーゲーム・ノーライフ", + "chinese_titles": [ + {"title": "NO GAME NO LIFE 遊戲人生", "source": "Chinese Wikipedia official Taiwan/Hong Kong/Mainland title", "url": "https://zh.wikipedia.org/wiki/NO_GAME_NO_LIFE_%E9%81%8A%E6%88%B2%E4%BA%BA%E7%94%9F", "confidence": "high"}, + {"title": "遊戲人生", "source": "Chinese Wikipedia common translation", "url": "https://zh.wikipedia.org/wiki/NO_GAME_NO_LIFE_%E9%81%8A%E6%88%B2%E4%BA%BA%E7%94%9F", "confidence": "medium"}, + {"title": "游戏人生", "source": "Wikidata zh label", "url": "https://www.wikidata.org/wiki/Q47469861", "confidence": "medium"} + ], + "chinese_titles_cn": [ + {"title": "NO GAME NO LIFE 遊戲人生", "source": "Chinese Wikipedia official Mainland China title", "url": "https://zh.wikipedia.org/wiki/NO_GAME_NO_LIFE_%E9%81%8A%E6%88%B2%E4%BA%BA%E7%94%9F", "confidence": "high"}, + {"title": "游戏人生", "source": "Wikidata zh label", "url": "https://www.wikidata.org/wiki/Q47469861", "confidence": "medium"} + ], + "chinese_titles_hk_mo": [ + {"title": "NO GAME NO LIFE 遊戲人生", "source": "Chinese Wikipedia official Hong Kong title", "url": "https://zh.wikipedia.org/wiki/NO_GAME_NO_LIFE_%E9%81%8A%E6%88%B2%E4%BA%BA%E7%94%9F", "confidence": "high"} + ], + "chinese_titles_tw": [ + {"title": "NO GAME NO LIFE 遊戲人生", "source": "Chinese Wikipedia official Taiwan title", "url": "https://zh.wikipedia.org/wiki/NO_GAME_NO_LIFE_%E9%81%8A%E6%88%B2%E4%BA%BA%E7%94%9F", "confidence": "high"}, + {"title": "遊戲人生", "source": "Chinese Wikipedia common translation", "url": "https://zh.wikipedia.org/wiki/NO_GAME_NO_LIFE_%E9%81%8A%E6%88%B2%E4%BA%BA%E7%94%9F", "confidence": "medium"} + ], + "korean_titles": [ + {"title": "노 게임 노 라이프", "source": "Wikidata ko label", "url": "https://www.wikidata.org/wiki/Q47469861", "confidence": "high"} + ], + "notes": [] + }, + { + "sample_index": 20, + "mal_id": 1575, + "default_title": "Code Geass: Hangyaku no Lelouch", + "cjk_title": "コードギアス 反逆のルルーシュ", + "chinese_titles": [ + {"title": "Code Geass 反叛的魯路修", "source": "Wikidata zh/zh-tw labels", "url": "https://www.wikidata.org/wiki/Q4384067", "confidence": "high"}, + {"title": "反叛的魯路修", "source": "Chinese Wikipedia formal Taiwan/Hong Kong title", "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", "confidence": "high"}, + {"title": "叛逆的魯魯修", "source": "Chinese Wikipedia Hong Kong TV title", "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", "confidence": "high"}, + {"title": "Code Geass 叛逆的魯魯修", "source": "Chinese Wikipedia Hong Kong streaming title", "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", "confidence": "high"} + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [ + {"title": "反叛的魯路修", "source": "Chinese Wikipedia formal Hong Kong title", "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", "confidence": "high"}, + {"title": "叛逆的魯魯修", "source": "Chinese Wikipedia Hong Kong TV title", "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", "confidence": "high"}, + {"title": "Code Geass 叛逆的魯魯修", "source": "Chinese Wikipedia Hong Kong streaming title", "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", "confidence": "high"} + ], + "chinese_titles_tw": [ + {"title": "Code Geass 反叛的魯路修", "source": "Wikidata zh-tw label", "url": "https://www.wikidata.org/wiki/Q4384067", "confidence": "high"}, + {"title": "反叛的魯路修", "source": "Chinese Wikipedia formal Taiwan title", "url": "https://zh.wikipedia.org/wiki/Code_Geass_%E5%8F%8D%E5%8F%9B%E7%9A%84%E9%AD%AF%E8%B7%AF%E4%BF%AE", "confidence": "high"} + ], + "korean_titles": [ + {"title": "코드 기아스 반역의 를르슈", "source": "Wikidata ko label", "url": "https://www.wikidata.org/wiki/Q4384067", "confidence": "high"} + ], + "notes": ["No source-backed Mainland China title was found in the checked sources."] + } + ] +} diff --git a/tools/search_eval/samples/title_enrichment_shard_02.json b/tools/search_eval/samples/title_enrichment_shard_02.json new file mode 100644 index 0000000..f911be6 --- /dev/null +++ b/tools/search_eval/samples/title_enrichment_shard_02.json @@ -0,0 +1,1000 @@ +{ + "shard": "02", + "range": [ + 21, + 40 + ], + "items": [ + { + "sample_index": 21, + "mal_id": 31240, + "default_title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "cjk_title": "Re:ゼロから始める異世界生活", + "chinese_titles": [ + { + "title": "Re:从零开始的异世界生活", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21355", + "confidence": "medium", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + }, + { + "title": "Re:從零開始的異世界生活 第一季", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q85676876", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "Re:从零开始的异世界生活", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21355", + "confidence": "medium", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "Re:從零開始的異世界生活 第一季", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q85676876", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "Re: 제로부터 시작하는 이세계 생활", + "source": "Apple TV Korea", + "url": "https://tv.apple.com/kr/show/re-%E1%84%8C%E1%85%A6%E1%84%85%E1%85%A9%E1%84%87%E1%85%AE%E1%84%90%E1%85%A5-%E1%84%89%E1%85%B5%E1%84%8C%E1%85%A1%E1%86%A8%E1%84%92%E1%85%A1%E1%86%AB%E1%85%B3%E1%86%AB-%E1%84%8B%E1%85%B5%E1%84%89%E1%85%A6%E1%84%80%E1%85%A8-%E1%84%89%E1%85%A2%E1%86%BC%E1%84%92%E1%85%AA%E1%86%AF/umc.cmc.4zdqlm8jim5xrtehsf1w67ano", + "confidence": "high" + } + ], + "notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ] + }, + { + "sample_index": 22, + "mal_id": 23273, + "default_title": "Shigatsu wa Kimi no Uso", + "cjk_title": "四月は君の嘘", + "chinese_titles": [ + { + "title": "四月是你的谎言", + "source": "AniList synonym", + "url": "https://anilist.co/anime/20665", + "confidence": "medium", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + }, + { + "title": "四月是你的謊言", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%9B%9B%E6%9C%88%E6%98%AF%E4%BD%A0%E7%9A%84%E8%AC%8A%E8%A8%80", + "confidence": "medium", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "chinese_titles_cn": [ + { + "title": "四月是你的谎言", + "source": "AniList synonym", + "url": "https://anilist.co/anime/20665", + "confidence": "medium", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "四月是你的謊言", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%9B%9B%E6%9C%88%E6%98%AF%E4%BD%A0%E7%9A%84%E8%AC%8A%E8%A8%80", + "confidence": "medium", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "korean_titles": [ + { + "title": "4월은 너의 거짓말", + "source": "Wikidata Korean label", + "url": "https://www.wikidata.org/wiki/Q91333870", + "confidence": "high" + } + ], + "notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ] + }, + { + "sample_index": 23, + "mal_id": 36456, + "default_title": "Boku no Hero Academia 3rd Season", + "cjk_title": "僕のヒーローアカデミア", + "chinese_titles": [ + { + "title": "我的英雄学院第三季", + "source": "AniList synonym", + "url": "https://anilist.co/anime/100166", + "confidence": "medium", + "note": "Simplified Chinese season synonym; source does not explicitly distinguish Mainland China." + }, + { + "title": "我的英雄学园", + "source": "Chinese Wikipedia regional formal title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "note": "Mainland China formal franchise title, not season-specific." + }, + { + "title": "我的英雄学院", + "source": "Chinese Wikipedia regional formal title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "note": "Hong Kong/Macau/Taiwan formal franchise title, not season-specific." + } + ], + "chinese_titles_cn": [ + { + "title": "我的英雄学院第三季", + "source": "AniList synonym", + "url": "https://anilist.co/anime/100166", + "confidence": "medium", + "note": "Simplified Chinese season synonym; source does not explicitly distinguish Mainland China." + }, + { + "title": "我的英雄学园", + "source": "Chinese Wikipedia regional formal title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "note": "Mainland China formal franchise title, not season-specific." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "我的英雄学院", + "source": "Chinese Wikipedia regional formal title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "note": "Hong Kong/Macau formal franchise title, not season-specific." + } + ], + "chinese_titles_tw": [ + { + "title": "我的英雄学院", + "source": "Chinese Wikipedia regional formal title", + "url": "https://zh.wikipedia.org/wiki/%E6%88%91%E7%9A%84%E8%8B%B1%E9%9B%84%E5%AD%B8%E9%99%A2", + "confidence": "high", + "note": "Taiwan formal franchise title, not season-specific." + } + ], + "korean_titles": [], + "notes": [ + "No mainstream Korean source-backed title was recorded in this first pass." + ] + }, + { + "sample_index": 24, + "mal_id": 4224, + "default_title": "Toradora!", + "cjk_title": "とらドラ!", + "chinese_titles": [ + { + "title": "龙与虎", + "source": "AniList synonym", + "url": "https://anilist.co/anime/4224", + "confidence": "medium", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + }, + { + "title": "虎與龍", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E9%BE%99%E4%B8%8E%E8%99%8E", + "confidence": "medium", + "note": "Chinese Wikipedia resolves the simplified search title to the Traditional Chinese page title." + } + ], + "chinese_titles_cn": [ + { + "title": "龙与虎", + "source": "AniList synonym", + "url": "https://anilist.co/anime/4224", + "confidence": "medium", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "虎與龍", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E9%BE%99%E4%B8%8E%E8%99%8E", + "confidence": "medium", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "korean_titles": [ + { + "title": "토라도라!", + "source": "Wikidata Korean label", + "url": "https://www.wikidata.org/wiki/Q61400349", + "confidence": "high" + } + ], + "notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ] + }, + { + "sample_index": 25, + "mal_id": 32182, + "default_title": "Mob Psycho 100", + "cjk_title": "モブサイコ100", + "chinese_titles": [ + { + "title": "路人超能100", + "source": "Chinese Wikipedia formal title", + "url": "https://zh.wikipedia.org/wiki/%E8%B7%AF%E4%BA%BA%E8%B6%85%E8%83%BD100", + "confidence": "high", + "note": "Listed by Chinese Wikipedia for Taiwan and Mainland animation usage." + }, + { + "title": "灵能百分百", + "source": "Chinese Wikipedia formal title", + "url": "https://zh.wikipedia.org/wiki/%E8%B7%AF%E4%BA%BA%E8%B6%85%E8%83%BD100", + "confidence": "medium", + "note": "Listed by Chinese Wikipedia as a Mainland title." + } + ], + "chinese_titles_cn": [ + { + "title": "路人超能100", + "source": "Chinese Wikipedia formal title", + "url": "https://zh.wikipedia.org/wiki/%E8%B7%AF%E4%BA%BA%E8%B6%85%E8%83%BD100", + "confidence": "high", + "note": "Mainland animation title listed by Chinese Wikipedia." + }, + { + "title": "灵能百分百", + "source": "Chinese Wikipedia formal title", + "url": "https://zh.wikipedia.org/wiki/%E8%B7%AF%E4%BA%BA%E8%B6%85%E8%83%BD100", + "confidence": "medium", + "note": "Mainland title listed by Chinese Wikipedia." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "路人超能100", + "source": "Chinese Wikipedia formal title", + "url": "https://zh.wikipedia.org/wiki/%E8%B7%AF%E4%BA%BA%E8%B6%85%E8%83%BD100", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "모브 사이코 100", + "source": "Netflix Korea", + "url": "https://www.netflix.com/kr/title/80179798", + "confidence": "high" + }, + { + "title": "모브사이코100", + "source": "Apple TV Korea", + "url": "https://tv.apple.com/kr/show/%E1%84%86%E1%85%A9%E1%84%87%E1%85%B3%E1%84%89%E1%85%A1%E1%84%8B%E1%85%B5%E1%84%8F%E1%85%A9100/umc.cmc.3fcfxpl733t5fzl2ob612r3on", + "confidence": "high" + } + ], + "notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ] + }, + { + "sample_index": 26, + "mal_id": 20507, + "default_title": "Noragami", + "cjk_title": "ノラガミ", + "chinese_titles": [ + { + "title": "野良神", + "source": "AniList synonym", + "url": "https://anilist.co/anime/20447", + "confidence": "medium", + "note": "Also appears as the Chinese Wikipedia redirect search title." + }, + { + "title": "流浪神差", + "source": "Chinese Wikipedia regional title", + "url": "https://zh.wikipedia.org/wiki/%E9%87%8E%E8%89%AF%E7%A5%9E", + "confidence": "high", + "note": "Listed for Taiwan and Hong Kong/Macau in the animation title field." + } + ], + "chinese_titles_cn": [ + { + "title": "野良神", + "source": "Chinese Wikipedia regional title", + "url": "https://zh.wikipedia.org/wiki/%E9%87%8E%E8%89%AF%E7%A5%9E", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "流浪神差", + "source": "Chinese Wikipedia regional title", + "url": "https://zh.wikipedia.org/wiki/%E9%87%8E%E8%89%AF%E7%A5%9E", + "confidence": "high" + } + ], + "chinese_titles_tw": [ + { + "title": "流浪神差", + "source": "Chinese Wikipedia regional title", + "url": "https://zh.wikipedia.org/wiki/%E9%87%8E%E8%89%AF%E7%A5%9E", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "노라가미", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EB%85%B8%EB%9D%BC%EA%B0%80%EB%AF%B8", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 27, + "mal_id": 31043, + "default_title": "Boku dake ga Inai Machi", + "cjk_title": "僕だけがいない街", + "chinese_titles": [ + { + "title": "只有我不存在的城市", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%8F%AA%E6%9C%89%E6%88%91%E4%B8%8D%E5%AD%98%E5%9C%A8%E7%9A%84%E5%9F%8E%E5%B8%82", + "confidence": "medium", + "note": "Chinese page title; source does not explicitly distinguish regions." + } + ], + "chinese_titles_cn": [ + { + "title": "只有我不存在的城市", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%8F%AA%E6%9C%89%E6%88%91%E4%B8%8D%E5%AD%98%E5%9C%A8%E7%9A%84%E5%9F%8E%E5%B8%82", + "confidence": "medium", + "note": "Chinese page title; source does not explicitly distinguish Mainland China." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "只有我不存在的城市", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%8F%AA%E6%9C%89%E6%88%91%E4%B8%8D%E5%AD%98%E5%9C%A8%E7%9A%84%E5%9F%8E%E5%B8%82", + "confidence": "medium", + "note": "Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "korean_titles": [ + { + "title": "나만이 없는 거리", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EB%82%98%EB%A7%8C%EC%9D%B4_%EC%97%86%EB%8A%94_%EA%B1%B0%EB%A6%AC", + "confidence": "high" + } + ], + "notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ] + }, + { + "sample_index": 28, + "mal_id": 40028, + "default_title": "Shingeki no Kyojin: The Final Season", + "cjk_title": "進撃の巨人 The Final Season", + "chinese_titles": [], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "진격의 거인 더 파이널 시즌", + "source": "AniList synonym", + "url": "https://anilist.co/anime/110277", + "confidence": "high" + } + ], + "notes": [ + "No source-backed regional Chinese title for this season was recorded in this first pass." + ] + }, + { + "sample_index": 29, + "mal_id": 22199, + "default_title": "Akame ga Kill!", + "cjk_title": "アカメが斬る!", + "chinese_titles": [ + { + "title": "斬!赤紅之瞳", + "source": "AniList synonym", + "url": "https://anilist.co/anime/20613", + "confidence": "medium", + "note": "Traditional Chinese synonym; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "斬!赤紅之瞳", + "source": "AniList synonym", + "url": "https://anilist.co/anime/20613", + "confidence": "medium", + "note": "Traditional Chinese synonym; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "korean_titles": [ + { + "title": "아카메가 벤다!", + "source": "Wikidata Korean label", + "url": "https://www.wikidata.org/wiki/Q57312224", + "confidence": "high" + } + ], + "notes": [ + "No Mainland China or Hong Kong/Macau-specific Chinese title found in the first pass." + ] + }, + { + "sample_index": 30, + "mal_id": 24833, + "default_title": "Ansatsu Kyoushitsu", + "cjk_title": "暗殺教室", + "chinese_titles": [ + { + "title": "暗殺教室", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E6%9A%97%E6%AE%BA%E6%95%99%E5%AE%A4_(%E5%8B%95%E7%95%AB)", + "confidence": "medium", + "note": "Chinese animation page title; source does not explicitly distinguish regions." + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "暗殺教室", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E6%9A%97%E6%AE%BA%E6%95%99%E5%AE%A4_(%E5%8B%95%E7%95%AB)", + "confidence": "medium", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "korean_titles": [ + { + "title": "암살교실", + "source": "Wikidata Korean label", + "url": "https://www.wikidata.org/wiki/Q50376961", + "confidence": "high" + } + ], + "notes": [ + "No Mainland China or Hong Kong/Macau-specific Chinese title found in the first pass." + ] + }, + { + "sample_index": 31, + "mal_id": 23755, + "default_title": "Nanatsu no Taizai", + "cjk_title": "七つの大罪", + "chinese_titles": [ + { + "title": "七大罪", + "source": "Wikidata Chinese label", + "url": "https://www.wikidata.org/wiki/Q9048543", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "七大罪", + "source": "Wikidata Chinese label", + "url": "https://www.wikidata.org/wiki/Q9048543", + "confidence": "medium", + "note": "General Chinese label; source does not explicitly distinguish Mainland China." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "七大罪", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q9048543", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "일곱 개의 대죄", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EC%9D%BC%EA%B3%B1_%EA%B0%9C%EC%9D%98_%EB%8C%80%EC%A3%84_(%EB%A7%8C%ED%99%94)", + "confidence": "high" + } + ], + "notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ] + }, + { + "sample_index": 32, + "mal_id": 269, + "default_title": "Bleach", + "cjk_title": "BLEACH - ブリーチ -", + "chinese_titles": [ + { + "title": "死神", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "high" + }, + { + "title": "BLEACH 漂靈", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "high" + }, + { + "title": "BLEACH 死神", + "source": "Wikidata zh-hant label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "medium", + "note": "Traditional Chinese label; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "chinese_titles_cn": [ + { + "title": "死神", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "BLEACH 漂靈", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "high" + } + ], + "chinese_titles_tw": [ + { + "title": "BLEACH 死神", + "source": "Wikidata zh-hant label", + "url": "https://www.wikidata.org/wiki/Q5362638", + "confidence": "medium", + "note": "Traditional Chinese label; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "korean_titles": [ + { + "title": "블리치", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EB%B8%94%EB%A6%AC%EC%B9%98_(%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98)", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 33, + "mal_id": 6547, + "default_title": "Angel Beats!", + "cjk_title": "Angel Beats!(エンジェルビーツ!)", + "chinese_titles": [ + { + "title": "Angel Beats!", + "source": "Wikidata Chinese/Taiwan/Hong Kong labels", + "url": "https://www.wikidata.org/wiki/Q531552", + "confidence": "high" + }, + { + "title": "天使的心跳", + "source": "Wikidata Chinese alternate label", + "url": "https://www.wikidata.org/wiki/Q531552", + "confidence": "medium" + }, + { + "title": "天使的脈動", + "source": "Wikidata Chinese alternate label", + "url": "https://www.wikidata.org/wiki/Q531552", + "confidence": "medium" + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [ + { + "title": "Angel Beats!", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q531552", + "confidence": "high" + } + ], + "chinese_titles_tw": [ + { + "title": "Angel Beats!", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q531552", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "엔젤 비트", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EC%97%94%EC%A0%A4_%EB%B9%84%ED%8A%B8", + "confidence": "high" + }, + { + "title": "엔젤 비츠!", + "source": "Wikidata Korean alternate label", + "url": "https://www.wikidata.org/wiki/Q531552", + "confidence": "medium" + } + ], + "notes": [ + "No Mainland China-specific Chinese title found in the first pass." + ] + }, + { + "sample_index": 34, + "mal_id": 20583, + "default_title": "Haikyuu!!", + "cjk_title": "ハイキュー!!", + "chinese_titles": [ + { + "title": "排球少年!!", + "source": "Wikidata regional Chinese labels", + "url": "https://www.wikidata.org/wiki/Q326642", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "排球少年!!", + "source": "Wikidata zh-cn/zh-hans label", + "url": "https://www.wikidata.org/wiki/Q326642", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "排球少年!!", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q326642", + "confidence": "high" + } + ], + "chinese_titles_tw": [ + { + "title": "排球少年!!", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q326642", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "하이큐!!", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%ED%95%98%EC%9D%B4%ED%81%90!!", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 35, + "mal_id": 37779, + "default_title": "Yakusoku no Neverland", + "cjk_title": "約束のネバーランド", + "chinese_titles": [ + { + "title": "约定的梦幻岛", + "source": "AniList synonym", + "url": "https://anilist.co/anime/101759", + "confidence": "medium", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + }, + { + "title": "約定的夢幻島", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E7%B4%84%E5%AE%9A%E7%9A%84%E5%A4%A2%E5%B9%BB%E5%B3%B6", + "confidence": "medium", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "chinese_titles_cn": [ + { + "title": "约定的梦幻岛", + "source": "AniList synonym", + "url": "https://anilist.co/anime/101759", + "confidence": "medium", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "約定的夢幻島", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E7%B4%84%E5%AE%9A%E7%9A%84%E5%A4%A2%E5%B9%BB%E5%B3%B6", + "confidence": "medium", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "korean_titles": [ + { + "title": "약속의 네버랜드", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EC%95%BD%EC%86%8D%EC%9D%98_%EB%84%A4%EB%B2%84%EB%9E%9C%EB%93%9C", + "confidence": "high" + } + ], + "notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ] + }, + { + "sample_index": 36, + "mal_id": 30831, + "default_title": "Kono Subarashii Sekai ni Shukufuku wo!", + "cjk_title": "この素晴らしい世界に祝福を!", + "chinese_titles": [ + { + "title": "为美好的世界献上祝福!", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21202", + "confidence": "medium", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + }, + { + "title": "為美好的世界獻上祝福!", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q19750843", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "为美好的世界献上祝福!", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21202", + "confidence": "medium", + "note": "Simplified Chinese synonym; source does not explicitly distinguish Mainland China." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "為美好的世界獻上祝福!", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q19750843", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "이 멋진 세계에 축복을!", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EC%9D%B4_%EB%A9%8B%EC%A7%84_%EC%84%B8%EA%B3%84%EC%97%90_%EC%B6%95%EB%B3%B5%EC%9D%84!", + "confidence": "high" + }, + { + "title": "코노스바", + "source": "Wikidata Korean alternate label", + "url": "https://www.wikidata.org/wiki/Q19750843", + "confidence": "medium" + } + ], + "notes": [ + "No Hong Kong/Macau-specific Chinese title found in the first pass." + ] + }, + { + "sample_index": 37, + "mal_id": 10620, + "default_title": "Mirai Nikki (TV)", + "cjk_title": "未来日記", + "chinese_titles": [ + { + "title": "未来日记", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q62034895", + "confidence": "high" + }, + { + "title": "未來日記", + "source": "Wikidata Chinese/zh-hk label", + "url": "https://www.wikidata.org/wiki/Q62034895", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "未来日记", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q62034895", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "未來日記", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q62034895", + "confidence": "high" + } + ], + "chinese_titles_tw": [ + { + "title": "未來日記", + "source": "Wikidata zh-hant label", + "url": "https://www.wikidata.org/wiki/Q62034895", + "confidence": "medium", + "note": "Traditional Chinese label; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "korean_titles": [ + { + "title": "미래일기", + "source": "Wikidata Korean label", + "url": "https://www.wikidata.org/wiki/Q62034895", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 38, + "mal_id": 21881, + "default_title": "Sword Art Online II", + "cjk_title": "ソードアート・オンライン II", + "chinese_titles": [ + { + "title": "刀劍神域Ⅱ", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%88%80%E5%8A%8D%E7%A5%9E%E5%9F%9F_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium", + "note": "Animation page lists the second season title; regional split was not explicit in the source excerpt." + }, + { + "title": "刀劍神域 II", + "source": "Bahamut Anime Crazy", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=916", + "confidence": "high" + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "刀劍神域 II", + "source": "Bahamut Anime Crazy", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=916", + "confidence": "high" + }, + { + "title": "刀劍神域Ⅱ", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%88%80%E5%8A%8D%E7%A5%9E%E5%9F%9F_%28%E5%8B%95%E7%95%AB%29", + "confidence": "medium", + "note": "Traditional Chinese animation page title for the second season." + } + ], + "korean_titles": [], + "notes": [ + "No Mainland China, Hong Kong/Macau, or Korean source-backed title was recorded in this first pass." + ] + }, + { + "sample_index": 39, + "mal_id": 1, + "default_title": "Cowboy Bebop", + "cjk_title": "カウボーイビバップ", + "chinese_titles": [ + { + "title": "星際牛仔", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E6%98%9F%E9%9A%9B%E7%89%9B%E4%BB%94", + "confidence": "medium", + "note": "Chinese page title; source does not explicitly distinguish regions." + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "星際牛仔", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E6%98%9F%E9%9A%9B%E7%89%9B%E4%BB%94", + "confidence": "medium", + "note": "Traditional Chinese page title; source does not explicitly distinguish Taiwan from Hong Kong/Macau." + } + ], + "korean_titles": [ + { + "title": "카우보이 비밥", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EC%B9%B4%EC%9A%B0%EB%B3%B4%EC%9D%B4_%EB%B9%84%EB%B0%A5", + "confidence": "high" + } + ], + "notes": [ + "No Mainland China or Hong Kong/Macau-specific Chinese title found in the first pass." + ] + }, + { + "sample_index": 40, + "mal_id": 9919, + "default_title": "Ao no Exorcist", + "cjk_title": "青の祓魔師", + "chinese_titles": [ + { + "title": "青之驱魔师", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q495919", + "confidence": "high" + }, + { + "title": "青之祓魔師", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q495919", + "confidence": "high" + }, + { + "title": "青之驅魔師", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q495919", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "青之驱魔师", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q495919", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "青之祓魔師", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q495919", + "confidence": "high" + } + ], + "chinese_titles_tw": [ + { + "title": "青之驅魔師", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q495919", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "청의 엑소시스트", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/%EC%B2%AD%EC%9D%98_%EC%97%91%EC%86%8C%EC%8B%9C%EC%8A%A4%ED%8A%B8", + "confidence": "high" + } + ], + "notes": [] + } + ] +} diff --git a/tools/search_eval/samples/title_enrichment_shard_03.json b/tools/search_eval/samples/title_enrichment_shard_03.json new file mode 100644 index 0000000..37bdff1 --- /dev/null +++ b/tools/search_eval/samples/title_enrichment_shard_03.json @@ -0,0 +1,988 @@ +{ + "shard": "03", + "range": [ + 41, + 60 + ], + "items": [ + { + "sample_index": 41, + "mal_id": 22535, + "default_title": "Kiseijuu: Sei no Kakuritsu", + "cjk_title": "寄生獣 セイの格率", + "chinese_titles": [ + { + "title": "寄生兽 生命的准则", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/88433", + "confidence": "high" + }, + { + "title": "寄生獸 生命的準則", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q137808011", + "confidence": "medium", + "note": "Generic Chinese label; not region-tagged." + } + ], + "chinese_titles_cn": [ + { + "title": "寄生兽 生命的准则", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/88433", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "기생수 세이의 격률", + "source": "Namu Wiki article title", + "url": "https://namu.moe/w/%EA%B8%B0%EC%83%9D%EC%88%98%20%EC%84%B8%EC%9D%B4%EC%9D%98%20%EA%B2%A9%EB%A5%A0", + "confidence": "medium" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ] + }, + { + "sample_index": 42, + "mal_id": 30, + "default_title": "Shinseiki Evangelion", + "cjk_title": "新世紀エヴァンゲリオン", + "chinese_titles": [ + { + "title": "新世纪福音战士", + "source": "Chinese Wikipedia article title", + "url": "https://zh.wikipedia.org/wiki/%E6%96%B0%E4%B8%96%E7%BA%AA%E7%A6%8F%E9%9F%B3%E6%88%98%E5%A3%AB", + "confidence": "high" + }, + { + "title": "新世紀福音戰士", + "source": "Wikidata zh-Hant label", + "url": "https://www.wikidata.org/wiki/Q662", + "confidence": "medium", + "note": "Traditional Chinese label; not region-tagged." + } + ], + "chinese_titles_cn": [ + { + "title": "新世纪福音战士", + "source": "Chinese Wikipedia article title", + "url": "https://zh.wikipedia.org/wiki/%E6%96%B0%E4%B8%96%E7%BA%AA%E7%A6%8F%E9%9F%B3%E6%88%98%E5%A3%AB", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "신세기 에반게리온", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EC%8B%A0%EC%84%B8%EA%B8%B0_%EC%97%90%EB%B0%98%EA%B2%8C%EB%A6%AC%EC%98%A8", + "confidence": "high" + }, + { + "title": "에반게리온", + "source": "Wikidata ko alt label", + "url": "https://www.wikidata.org/wiki/Q662", + "confidence": "medium" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ] + }, + { + "sample_index": 43, + "mal_id": 199, + "default_title": "Sen to Chihiro no Kamikakushi", + "cjk_title": "千と千尋の神隠し", + "chinese_titles": [ + { + "title": "千与千寻", + "source": "Wikidata zh-CN label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "high" + }, + { + "title": "千與千尋", + "source": "Wikidata zh-HK/zh-MO label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "high" + }, + { + "title": "神隱少女", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "千与千寻", + "source": "Wikidata zh-CN label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "high" + }, + { + "title": "千与千寻的神隐", + "source": "Wikidata zh alt label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "medium" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "千與千尋", + "source": "Wikidata zh-HK/zh-MO label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "high" + } + ], + "chinese_titles_tw": [ + { + "title": "神隱少女", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q155653", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "센과 치히로의 행방불명", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EC%84%BC%EA%B3%BC_%EC%B9%98%ED%9E%88%EB%A1%9C%EC%9D%98_%ED%96%89%EB%B0%A9%EB%B6%88%EB%AA%85", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 44, + "mal_id": 33352, + "default_title": "Violet Evergarden", + "cjk_title": "ヴァイオレット・エヴァーガーデン", + "chinese_titles": [ + { + "title": "紫罗兰永恒花园", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/183878", + "confidence": "high" + }, + { + "title": "紫羅蘭永恆花園", + "source": "Chinese Wikipedia article title", + "url": "https://zh.wikipedia.org/wiki/%E7%B4%AB%E7%BE%85%E8%98%AD%E6%B0%B8%E6%81%86%E8%8A%B1%E5%9C%92", + "confidence": "medium", + "note": "Traditional Chinese page title; not region-tagged." + } + ], + "chinese_titles_cn": [ + { + "title": "紫罗兰永恒花园", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/183878", + "confidence": "high" + }, + { + "title": "紫罗兰永恒花园", + "source": "AniList synonym", + "url": "https://anilist.co/anime/21827", + "confidence": "medium" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "바이올렛 에버가든", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EB%B0%94%EC%9D%B4%EC%98%AC%EB%A0%9B_%EC%97%90%EB%B2%84%EA%B0%80%EB%93%A0", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ] + }, + { + "sample_index": 45, + "mal_id": 44511, + "default_title": "Chainsaw Man", + "cjk_title": "チェンソーマン", + "chinese_titles": [ + { + "title": "链锯人", + "source": "AniList synonym", + "url": "https://anilist.co/anime/127230", + "confidence": "medium" + }, + { + "title": "鏈鋸人", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q104211858", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "链锯人", + "source": "AniList synonym", + "url": "https://anilist.co/anime/127230", + "confidence": "medium" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "鏈鋸人", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q104211858", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "체인소 맨", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EC%B2%B4%EC%9D%B8%EC%86%8C_%EB%A7%A8_(%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98)", + "confidence": "high" + }, + { + "title": "체인소맨", + "source": "Wikidata ko alt label", + "url": "https://www.wikidata.org/wiki/Q104211858", + "confidence": "medium" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau regional title was found in the first pass." + ] + }, + { + "sample_index": 46, + "mal_id": 37450, + "default_title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "cjk_title": "青春ブタ野郎はバニーガール先輩の夢を見ない", + "chinese_titles": [ + { + "title": "青春猪头少年不会梦到兔女郎学姐", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/240038", + "confidence": "high" + }, + { + "title": "青春豬頭少年不會夢到兔女郎學姊", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q63615353", + "confidence": "medium", + "note": "Generic Chinese label; not region-tagged." + } + ], + "chinese_titles_cn": [ + { + "title": "青春猪头少年不会梦到兔女郎学姐", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/240038", + "confidence": "high" + }, + { + "title": "青春猪头少年不会梦到兔女郎学姐", + "source": "AniList synonym", + "url": "https://anilist.co/anime/101291", + "confidence": "medium" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "청춘 돼지는 바니걸 선배의 꿈을 꾸지 않는다", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q63615353", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ] + }, + { + "sample_index": 47, + "mal_id": 38691, + "default_title": "Dr. Stone", + "cjk_title": "ドクターストーン", + "chinese_titles": [ + { + "title": "石纪元", + "source": "AniList synonym", + "url": "https://anilist.co/anime/105333", + "confidence": "medium" + }, + { + "title": "Dr.STONE 新石紀 第一季", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q96376597", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "石纪元", + "source": "AniList synonym", + "url": "https://anilist.co/anime/105333", + "confidence": "medium" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "Dr.STONE 新石紀 第一季", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q96376597", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "닥터 스톤", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EB%8B%A5%ED%84%B0_%EC%8A%A4%ED%86%A4", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau regional title was found in the first pass." + ] + }, + { + "sample_index": 48, + "mal_id": 2904, + "default_title": "Code Geass: Hangyaku no Lelouch R2", + "cjk_title": "コードギアス 反逆のルルーシュ R2", + "chinese_titles": [ + { + "title": "Code Geass 反叛的鲁路修R2", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/8", + "confidence": "high" + }, + { + "title": "叛逆的魯魯修", + "source": "Wikidata zh-HK label", + "url": "https://www.wikidata.org/wiki/Q4384067", + "confidence": "medium", + "note": "Hong Kong label for the matched Wikidata item; label omits R2." + }, + { + "title": "Code Geass 反叛的魯路修", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q4384067", + "confidence": "medium", + "note": "Taiwan label for the matched Wikidata item; label omits R2." + } + ], + "chinese_titles_cn": [ + { + "title": "Code Geass 反叛的鲁路修R2", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/8", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "叛逆的魯魯修", + "source": "Wikidata zh-HK label", + "url": "https://www.wikidata.org/wiki/Q4384067", + "confidence": "medium", + "note": "Label omits R2." + } + ], + "chinese_titles_tw": [ + { + "title": "Code Geass 反叛的魯路修", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q4384067", + "confidence": "medium", + "note": "Label omits R2." + } + ], + "korean_titles": [ + { + "title": "코드 기아스 반역의 를르슈", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EC%BD%94%EB%93%9C_%EA%B8%B0%EC%96%B4%EC%8A%A4_%EB%B0%98%EC%97%AD%EC%9D%98_%EB%A5%BC%EB%A5%B4%EC%8A%88", + "confidence": "medium", + "note": "Series-level Korean title; page covers R2 but the title omits R2." + } + ], + "notes": [] + }, + { + "sample_index": 49, + "mal_id": 37999, + "default_title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "cjk_title": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "chinese_titles": [ + { + "title": "辉夜大小姐想让我告白~天才们的恋爱头脑战~", + "source": "AniList synonym", + "url": "https://anilist.co/anime/101921", + "confidence": "medium" + }, + { + "title": "輝夜姬想讓人告白~天才們的戀愛頭腦戰~", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q102364866", + "confidence": "medium", + "note": "Generic Chinese label; not region-tagged." + } + ], + "chinese_titles_cn": [ + { + "title": "辉夜大小姐想让我告白~天才们的恋爱头脑战~", + "source": "AniList synonym", + "url": "https://anilist.co/anime/101921", + "confidence": "medium" + }, + { + "title": "辉夜姬想让人告白~天才们的恋爱头脑战~", + "source": "AniList synonym", + "url": "https://anilist.co/anime/101921", + "confidence": "medium" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "카구야 님은 고백받고 싶어 ~천재들의 연애 두뇌전~", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EC%B9%B4%EA%B5%AC%EC%95%BC_%EB%8B%98%EC%9D%80_%EA%B3%A0%EB%B0%B1%EB%B0%9B%EA%B3%A0_%EC%8B%B6%EC%96%B4", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ] + }, + { + "sample_index": 50, + "mal_id": 28223, + "default_title": "Death Parade", + "cjk_title": "デス・パレード", + "chinese_titles": [ + { + "title": "死亡游行", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/116742", + "confidence": "high" + }, + { + "title": "死亡遊行", + "source": "Wikidata zh-Hant label", + "url": "https://www.wikidata.org/wiki/Q11320614", + "confidence": "medium", + "note": "Traditional Chinese label; not region-tagged." + } + ], + "chinese_titles_cn": [ + { + "title": "死亡游行", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/116742", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "데스 퍼레이드", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EB%8D%B0%EC%8A%A4_%ED%8D%BC%EB%A0%88%EC%9D%B4%EB%93%9C", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ] + }, + { + "sample_index": 51, + "mal_id": 38408, + "default_title": "Boku no Hero Academia 4th Season", + "cjk_title": "僕のヒーローアカデミア", + "chinese_titles": [ + { + "title": "我的英雄学院 第四季", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/262162", + "confidence": "high" + }, + { + "title": "我的英雄学院第四季", + "source": "AniList synonym", + "url": "https://anilist.co/anime/104276", + "confidence": "medium" + } + ], + "chinese_titles_cn": [ + { + "title": "我的英雄学院 第四季", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/262162", + "confidence": "high" + }, + { + "title": "我的英雄学院第四季", + "source": "AniList synonym", + "url": "https://anilist.co/anime/104276", + "confidence": "medium" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "나의 히어로 아카데미아 4기", + "source": "Korean Wikipedia series article", + "url": "https://ko.wikipedia.org/wiki/%EB%82%98%EC%9D%98_%ED%9E%88%EC%96%B4%EB%A1%9C_%EC%95%84%EC%B9%B4%EB%8D%B0%EB%AF%B8%EC%95%84", + "confidence": "medium" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ] + }, + { + "sample_index": 52, + "mal_id": 34572, + "default_title": "Black Clover", + "cjk_title": "ブラッククローバー", + "chinese_titles": [ + { + "title": "黑色五叶草", + "source": "Wikidata zh-CN label", + "url": "https://www.wikidata.org/wiki/Q70331950", + "confidence": "high" + }, + { + "title": "黑色五葉草", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q70331950", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "黑色五叶草", + "source": "Wikidata zh-CN label", + "url": "https://www.wikidata.org/wiki/Q70331950", + "confidence": "high" + }, + { + "title": "黑色五叶草", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/202880", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "黑色五葉草", + "source": "Wikidata zh-TW label", + "url": "https://www.wikidata.org/wiki/Q70331950", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "블랙 클로버", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EB%B8%94%EB%9E%99_%ED%81%B4%EB%A1%9C%EB%B2%84", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau regional title was found in the first pass." + ] + }, + { + "sample_index": 53, + "mal_id": 27899, + "default_title": "Tokyo Ghoul √A", + "cjk_title": "東京喰種√A", + "chinese_titles": [ + { + "title": "东京喰种√A", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/115292", + "confidence": "high" + }, + { + "title": "東京喰種√A", + "source": "Chinese Wikipedia page title", + "url": "https://zh.wikipedia.org/wiki/%E6%9D%B1%E4%BA%AC%E5%96%B0%E7%A8%AE%E2%88%9AA", + "confidence": "medium", + "note": "Traditional Chinese title; not region-tagged." + } + ], + "chinese_titles_cn": [ + { + "title": "东京喰种√A", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/115292", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "도쿄 구울 √A", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EB%8F%84%EC%BF%84_%EA%B5%AC%EC%9A%B8", + "confidence": "medium", + "note": "Series article covers the √A anime season." + } + ], + "notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ] + }, + { + "sample_index": 54, + "mal_id": 34134, + "default_title": "One Punch Man 2nd Season", + "cjk_title": "ワンパンマン 2期", + "chinese_titles": [ + { + "title": "一拳超人 第二季", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/193619", + "confidence": "high" + }, + { + "title": "一拳超人 第二季", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q105081766", + "confidence": "medium", + "note": "Generic Chinese label; not region-tagged." + } + ], + "chinese_titles_cn": [ + { + "title": "一拳超人 第二季", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/193619", + "confidence": "high" + }, + { + "title": "一拳超人 第二季", + "source": "AniList synonym", + "url": "https://anilist.co/anime/97668", + "confidence": "medium" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "원펀맨 2기", + "source": "Korean Wikipedia series article", + "url": "https://ko.wikipedia.org/wiki/%EC%9B%90%ED%8E%80%EB%A7%A8", + "confidence": "medium" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ] + }, + { + "sample_index": 55, + "mal_id": 14719, + "default_title": "JoJo no Kimyou na Bouken (TV)", + "cjk_title": "ジョジョの奇妙な冒険", + "chinese_titles": [ + { + "title": "JOJO的奇妙冒险", + "source": "Chinese Wikipedia article title", + "url": "https://zh.wikipedia.org/wiki/JoJo%E7%9A%84%E5%A5%87%E5%A6%99%E5%86%92%E9%9A%AA", + "confidence": "high" + }, + { + "title": "JoJo的奇妙冒險", + "source": "Chinese Wikipedia article title", + "url": "https://zh.wikipedia.org/wiki/JoJo%E7%9A%84%E5%A5%87%E5%A6%99%E5%86%92%E9%9A%AA", + "confidence": "medium", + "note": "Traditional Chinese title; not region-tagged." + } + ], + "chinese_titles_cn": [ + { + "title": "JOJO的奇妙冒险", + "source": "Chinese Wikipedia article title", + "url": "https://zh.wikipedia.org/wiki/JoJo%E7%9A%84%E5%A5%87%E5%A6%99%E5%86%92%E9%9A%AA", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "죠죠의 기묘한 모험", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EC%A3%A0%EC%A3%A0%EC%9D%98_%EA%B8%B0%EB%AC%98%ED%95%9C_%EB%AA%A8%ED%97%98", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ] + }, + { + "sample_index": 56, + "mal_id": 18679, + "default_title": "Kill la Kill", + "cjk_title": "キルラキル", + "chinese_titles": [ + { + "title": "斩服少女", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/72941", + "confidence": "high" + }, + { + "title": "斬服少女", + "source": "Wikidata zh alt label", + "url": "https://www.wikidata.org/wiki/Q13637192", + "confidence": "medium", + "note": "Traditional Chinese alternate label; not region-tagged." + }, + { + "title": "KILL la KILL", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q13637192", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "斩服少女", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/72941", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "킬라킬", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%ED%82%AC%EB%9D%BC%ED%82%AC", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ] + }, + { + "sample_index": 57, + "mal_id": 6702, + "default_title": "Fairy Tail", + "cjk_title": "FAIRY TAIL(フェアリーテイル)", + "chinese_titles": [ + { + "title": "妖精的尾巴", + "source": "AniList synonym", + "url": "https://anilist.co/anime/6702", + "confidence": "medium" + }, + { + "title": "FAIRY TAIL", + "source": "Wikidata zh-Hant label", + "url": "https://www.wikidata.org/wiki/Q16510277", + "confidence": "medium", + "note": "Traditional Chinese label; not region-tagged." + } + ], + "chinese_titles_cn": [ + { + "title": "妖精的尾巴", + "source": "AniList synonym", + "url": "https://anilist.co/anime/6702", + "confidence": "medium" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "페어리 테일", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%ED%8E%98%EC%96%B4%EB%A6%AC_%ED%85%8C%EC%9D%BC", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ] + }, + { + "sample_index": 58, + "mal_id": 37521, + "default_title": "Vinland Saga", + "cjk_title": "ヴィンランド・サガ", + "chinese_titles": [ + { + "title": "冰海战记", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/240386", + "confidence": "high" + }, + { + "title": "海盜戰記", + "source": "Wikidata zh-Hant label", + "url": "https://www.wikidata.org/wiki/Q111677557", + "confidence": "medium", + "note": "Traditional Chinese label; not region-tagged." + } + ], + "chinese_titles_cn": [ + { + "title": "冰海战记", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/240386", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "빈란드 사가", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EB%B9%88%EB%9E%80%EB%93%9C_%EC%82%AC%EA%B0%80", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ] + }, + { + "sample_index": 59, + "mal_id": 35849, + "default_title": "Darling in the FranXX", + "cjk_title": "ダーリン・イン・ザ・フランキス", + "chinese_titles": [ + { + "title": "DARLING in the FRANXX", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/218711", + "confidence": "high" + }, + { + "title": "比翼之吻", + "source": "Wikidata zh alt label", + "url": "https://www.wikidata.org/wiki/Q36498848", + "confidence": "medium", + "note": "Generic Chinese alternate label; not region-tagged." + }, + { + "title": "情迷弗兰克斯", + "source": "Wikidata zh alt label", + "url": "https://www.wikidata.org/wiki/Q36498848", + "confidence": "medium", + "note": "Generic Chinese alternate label; not region-tagged." + }, + { + "title": "親愛的弗蘭克斯 DARLING in the FRANXX", + "source": "Wikidata zh alt label", + "url": "https://www.wikidata.org/wiki/Q36498848", + "confidence": "medium", + "note": "Generic Chinese alternate label; not region-tagged." + } + ], + "chinese_titles_cn": [ + { + "title": "DARLING in the FRANXX", + "source": "Bangumi subject title", + "url": "https://bgm.tv/subject/218711", + "confidence": "high" + }, + { + "title": "情迷弗兰克斯", + "source": "Wikidata zh alt label", + "url": "https://www.wikidata.org/wiki/Q36498848", + "confidence": "medium", + "note": "Simplified Chinese alternate label; not region-tagged." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "달링 인 더 프랑키스", + "source": "Korean Wikipedia article title", + "url": "https://ko.wikipedia.org/wiki/%EB%8B%AC%EB%A7%81_%EC%9D%B8_%EB%8D%94_%ED%94%84%EB%9E%91%ED%82%A4%EC%8A%A4", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ] + }, + { + "sample_index": 60, + "mal_id": 11111, + "default_title": "Another", + "cjk_title": "アナザー", + "chinese_titles": [ + { + "title": "替身", + "source": "Douban subject title", + "url": "https://movie.douban.com/subject/5392222/", + "confidence": "high" + }, + { + "title": "Another", + "source": "Chinese Wikipedia article title", + "url": "https://zh.wikipedia.org/wiki/Another", + "confidence": "medium", + "note": "Chinese Wikipedia keeps the original Latin title and notes the simplified Chinese novel title as 替身." + } + ], + "chinese_titles_cn": [ + { + "title": "替身", + "source": "Douban subject title", + "url": "https://movie.douban.com/subject/5392222/", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "어나더", + "source": "Namu Wiki article title", + "url": "https://namu.moe/w/Another(%EC%86%8C%EC%84%A4)", + "confidence": "medium", + "note": "Series-level Korean article; the anime adaptation uses the same title." + } + ], + "notes": [ + "No source-backed Hong Kong/Macau or Taiwan regional title was found in the first pass." + ] + } + ] +} diff --git a/tools/search_eval/samples/title_enrichment_shard_04.json b/tools/search_eval/samples/title_enrichment_shard_04.json new file mode 100644 index 0000000..a8e9b8d --- /dev/null +++ b/tools/search_eval/samples/title_enrichment_shard_04.json @@ -0,0 +1,944 @@ +{ + "shard": "04", + "range": [ + 61, + 80 + ], + "items": [ + { + "sample_index": 61, + "mal_id": 40456, + "default_title": "Kimetsu no Yaiba Movie: Mugen Ressha-hen", + "cjk_title": "劇場版 鬼滅の刃 無限列車編", + "chinese_titles": [ + { + "title": "鬼滅之刃劇場版 無限列車篇", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鬼滅之刃劇場版_無限列車篇", + "confidence": "high" + }, + { + "title": "鬼灭之刃:无限列车篇", + "source": "AniList synonym", + "url": "https://anilist.co/anime/112151", + "confidence": "medium", + "note": "Simplified Chinese synonym; source does not identify a specific Chinese region." + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [ + { + "title": "鬼滅之刃劇場版 無限列車篇", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鬼滅之刃劇場版_無限列車篇", + "confidence": "high", + "note": "The page lists Muse Communication distribution for Hong Kong and Macau." + } + ], + "chinese_titles_tw": [ + { + "title": "鬼滅之刃劇場版 無限列車篇", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鬼滅之刃劇場版_無限列車篇", + "confidence": "high", + "note": "The page lists the Taiwan release and Muse Communication Taiwan distribution." + } + ], + "korean_titles": [ + { + "title": "극장판 귀멸의 칼날: 무한열차편", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/극장판_귀멸의_칼날:_무한열차편", + "confidence": "high" + }, + { + "title": "극장판 귀멸의 칼날 무한열차 편", + "source": "Wikidata", + "url": "https://www.wikidata.org/wiki/Q96376192", + "confidence": "medium" + } + ], + "notes": [ + "No source-backed Mainland China regional title was found; the simplified AniList synonym is kept only in the union list." + ] + }, + { + "sample_index": 62, + "mal_id": 3588, + "default_title": "Soul Eater", + "cjk_title": "ソウルイーター", + "chinese_titles": [ + { + "title": "噬魂者", + "source": "Wikidata", + "url": "https://www.wikidata.org/wiki/Q18553975", + "confidence": "high" + }, + { + "title": "SOUL EATER", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/SOUL_EATER", + "confidence": "medium" + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "소울 이터", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/소울_이터", + "confidence": "high" + } + ], + "notes": [ + "Chinese sources found do not distinguish Mainland China, Hong Kong/Macau, or Taiwan title variants." + ] + }, + { + "sample_index": 63, + "mal_id": 2001, + "default_title": "Tengen Toppa Gurren Lagann", + "cjk_title": "天元突破グレンラガン", + "chinese_titles": [ + { + "title": "天元突破 紅蓮螺巖", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/天元突破_紅蓮螺巖", + "confidence": "high" + }, + { + "title": "天元突破红莲螺岩", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q4277", + "confidence": "medium", + "note": "Simplified Chinese alt label; source does not identify a specific Chinese region." + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [ + { + "title": "天元突破 紅蓮螺巖", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/天元突破_紅蓮螺巖", + "confidence": "high", + "note": "The page describes Hong Kong broadcast under this article title." + } + ], + "chinese_titles_tw": [ + { + "title": "天元突破 紅蓮螺巖", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/天元突破_紅蓮螺巖", + "confidence": "high", + "note": "The page describes Taiwan broadcast under this article title." + } + ], + "korean_titles": [ + { + "title": "천원돌파 그렌라간", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/천원돌파_그렌라간", + "confidence": "high" + }, + { + "title": "그렌라간", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q4277", + "confidence": "medium" + } + ], + "notes": [ + "No source-backed Mainland China regional title was found; the simplified Wikidata alt label is kept only in the union list." + ] + }, + { + "sample_index": 64, + "mal_id": 35790, + "default_title": "Tate no Yuusha no Nariagari", + "cjk_title": "盾の勇者の成り上がり", + "chinese_titles": [ + { + "title": "盾之勇者成名錄", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/盾之勇者成名錄", + "confidence": "high" + }, + { + "title": "盾之勇者成名录", + "source": "AniList synonym", + "url": "https://anilist.co/anime/99263", + "confidence": "medium", + "note": "Simplified Chinese synonym." + } + ], + "chinese_titles_cn": [ + { + "title": "盾之勇者成名录", + "source": "AniList synonym", + "url": "https://anilist.co/anime/99263", + "confidence": "medium", + "note": "Used as a simplified Chinese title; no separate official Mainland distributor source was found." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "盾之勇者成名錄", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/盾之勇者成名錄", + "confidence": "high", + "note": "The page lists Taiwan/Hong Kong publishing under this title." + } + ], + "chinese_titles_tw": [ + { + "title": "盾之勇者成名錄", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/盾之勇者成名錄", + "confidence": "high", + "note": "The page lists Taiwan/Hong Kong publishing under this title." + } + ], + "korean_titles": [ + { + "title": "방패 용사 성공담", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/방패_용사_성공담", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 65, + "mal_id": 28999, + "default_title": "Charlotte", + "cjk_title": "Charlotte(シャーロット)", + "chinese_titles": [ + { + "title": "夏洛特", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/Charlotte_(動畫)", + "confidence": "high", + "note": "Listed as the Taiwan formal title." + }, + { + "title": "Charlotte", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/Charlotte_(動畫)", + "confidence": "medium" + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "夏洛特", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/Charlotte_(動畫)", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "샤를로트", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/샤를로트_(애니메이션)", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Mainland China or Hong Kong/Macau regional title was found." + ] + }, + { + "sample_index": 66, + "mal_id": 29803, + "default_title": "Overlord", + "cjk_title": "オーバーロード", + "chinese_titles": [ + { + "title": "OVERLORD", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/OVERLORD_(動畫)", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "OVERLORD", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/OVERLORD_(動畫)", + "confidence": "medium", + "note": "The page lists Mainland China streaming for the anime under the article title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "OVERLORD", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/OVERLORD_(動畫)", + "confidence": "high", + "note": "The page lists Hong Kong/Macau licensing for the anime under the article title." + } + ], + "chinese_titles_tw": [ + { + "title": "OVERLORD", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/OVERLORD_(動畫)", + "confidence": "high", + "note": "The page lists Taiwan licensing for the anime under the article title." + } + ], + "korean_titles": [ + { + "title": "오버로드", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/오버로드_(소설)", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 67, + "mal_id": 13601, + "default_title": "Psycho-Pass", + "cjk_title": "サイコパス", + "chinese_titles": [ + { + "title": "PSYCHO-PASS心靈判官", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/PSYCHO-PASS", + "confidence": "high" + }, + { + "title": "心理測量者", + "source": "Wikidata", + "url": "https://www.wikidata.org/wiki/Q1315951", + "confidence": "medium" + }, + { + "title": "心靈判官", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q1315951", + "confidence": "medium" + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [ + { + "title": "PSYCHO-PASS心靈判官", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/PSYCHO-PASS", + "confidence": "high", + "note": "The page lists Hong Kong/Macau licensing under this anime title." + } + ], + "chinese_titles_tw": [ + { + "title": "PSYCHO-PASS心靈判官", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/PSYCHO-PASS", + "confidence": "high", + "note": "The page lists Taiwan licensing under this anime title." + } + ], + "korean_titles": [ + { + "title": "PSYCHO-PASS", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/PSYCHO-PASS", + "confidence": "high" + }, + { + "title": "사이코패스", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q1315951", + "confidence": "medium" + } + ], + "notes": [ + "No source-backed Mainland China regional title was found." + ] + }, + { + "sample_index": 68, + "mal_id": 28171, + "default_title": "Shokugeki no Souma", + "cjk_title": "食戟のソーマ", + "chinese_titles": [ + { + "title": "食戟之靈", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/食戟之靈_(動畫)", + "confidence": "high" + }, + { + "title": "食戟之灵", + "source": "AniList synonym", + "url": "https://anilist.co/anime/20923", + "confidence": "medium" + } + ], + "chinese_titles_cn": [ + { + "title": "食戟之灵", + "source": "AniList synonym", + "url": "https://anilist.co/anime/20923", + "confidence": "medium", + "note": "Simplified Chinese synonym; the Chinese Wikipedia page also lists Mainland China licensing." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "食戟之靈", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/食戟之靈_(動畫)", + "confidence": "high", + "note": "The page lists Hong Kong/Macau licensing for the anime." + } + ], + "chinese_titles_tw": [ + { + "title": "食戟之靈", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/食戟之靈_(動畫)", + "confidence": "high", + "note": "The page lists Taiwan licensing for the anime." + } + ], + "korean_titles": [ + { + "title": "식극의 소마", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/식극의_소마", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 69, + "mal_id": 47778, + "default_title": "Kimetsu no Yaiba: Yuukaku-hen", + "cjk_title": "鬼滅の刃 遊郭編", + "chinese_titles": [ + { + "title": "鬼滅之刃 遊郭篇", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鬼滅之刃_遊郭篇", + "confidence": "high" + }, + { + "title": "鬼灭之刃 游郭篇", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q105847067", + "confidence": "medium" + }, + { + "title": "鬼灭之刃 花街篇", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q105847067", + "confidence": "medium" + } + ], + "chinese_titles_cn": [ + { + "title": "鬼灭之刃 游郭篇", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q105847067", + "confidence": "medium" + }, + { + "title": "鬼灭之刃 花街篇", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q105847067", + "confidence": "medium" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "鬼滅之刃 遊郭篇", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鬼滅之刃_遊郭篇", + "confidence": "high", + "note": "The page lists Hong Kong/Macau distribution and a Hong Kong Cantonese cast source under this title." + } + ], + "chinese_titles_tw": [ + { + "title": "鬼滅之刃 遊郭篇", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鬼滅之刃_遊郭篇", + "confidence": "high", + "note": "The page lists Taiwan distribution under this title." + } + ], + "korean_titles": [ + { + "title": "귀멸의 칼날: 유곽 편", + "source": "Wikidata", + "url": "https://www.wikidata.org/wiki/Q105847067", + "confidence": "high" + }, + { + "title": "귀멸의 칼날: 환락의 거리편", + "source": "AniList synonym", + "url": "https://anilist.co/anime/142329", + "confidence": "medium" + } + ], + "notes": [] + }, + { + "sample_index": 70, + "mal_id": 37510, + "default_title": "Mob Psycho 100 II", + "cjk_title": "モブサイコ100 II", + "chinese_titles": [ + { + "title": "路人超能100 II", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/路人超能100", + "confidence": "high" + }, + { + "title": "灵能百分百", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/路人超能100", + "confidence": "high", + "note": "Listed as a Mainland China common/formal title for the work." + } + ], + "chinese_titles_cn": [ + { + "title": "路人超能100 II", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/路人超能100", + "confidence": "high", + "note": "Listed as the Mainland China animation title for the work; season 2 is listed as 路人超能100 II." + }, + { + "title": "灵能百分百", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/路人超能100", + "confidence": "high", + "note": "Listed as a Mainland China common/formal title for the work." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "路人超能100 II", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/路人超能100", + "confidence": "high", + "note": "Listed as the Taiwan animation title for the work; season 2 is listed as 路人超能100 II." + } + ], + "korean_titles": [ + { + "title": "모브 사이코 100 II", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/모브_사이코_100", + "confidence": "high" + }, + { + "title": "모브 사이코 100", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/모브_사이코_100", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Hong Kong/Macau regional title was found." + ] + }, + { + "sample_index": 71, + "mal_id": 9989, + "default_title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "cjk_title": "あの日見た花の名前を僕達はまだ知らない。", + "chinese_titles": [ + { + "title": "我們仍未知道那天所看見的花名。", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/我們仍未知道那天所看見的花的名字。", + "confidence": "high" + }, + { + "title": "我们仍未知道那天所看见的花的名字。", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/我們仍未知道那天所看見的花的名字。", + "confidence": "high", + "note": "Listed as the official simplified Chinese title from Fuji TV Chinese." + }, + { + "title": "未聞花名", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium" + } + ], + "chinese_titles_cn": [ + { + "title": "我们仍未知道那天所看见的花的名字。", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/我們仍未知道那天所看見的花的名字。", + "confidence": "high", + "note": "Listed as the official simplified Chinese title from Fuji TV Chinese." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "我們仍未知道那天所看見的花名。", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/我們仍未知道那天所看見的花的名字。", + "confidence": "high", + "note": "The page lists this as the Hong Kong formal title; no Macau-specific source was found." + } + ], + "chinese_titles_tw": [ + { + "title": "我們仍未知道那天所看見的花名。", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/我們仍未知道那天所看見的花的名字。", + "confidence": "high", + "note": "The page lists this as the Taiwan formal title." + } + ], + "korean_titles": [ + { + "title": "그날 본 꽃의 이름을 우리는 아직 모른다", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/그날_본_꽃의_이름을_우리는_아직_모른다", + "confidence": "high" + }, + { + "title": "아노하나", + "source": "Wikidata alt label", + "url": "https://www.wikidata.org/wiki/Q483943", + "confidence": "medium" + } + ], + "notes": [] + }, + { + "sample_index": 72, + "mal_id": 15809, + "default_title": "Hataraku Maou-sama!", + "cjk_title": "はたらく魔王さま!", + "chinese_titles": [ + { + "title": "打工吧!魔王大人", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/打工吧!魔王大人", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "打工吧!魔王大人", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/打工吧!魔王大人", + "confidence": "high", + "note": "The page lists Mainland China publishing for the work under this title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "打工吧!魔王大人", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/打工吧!魔王大人", + "confidence": "high", + "note": "The page lists Taiwan/Hong Kong publishing and Hong Kong/Macau anime distribution under this title." + } + ], + "chinese_titles_tw": [ + { + "title": "打工吧!魔王大人", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/打工吧!魔王大人", + "confidence": "high", + "note": "The page lists Taiwan publishing and anime distribution under this title." + } + ], + "korean_titles": [ + { + "title": "알바 뛰는 마왕님!", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/알바_뛰는_마왕님!", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 73, + "mal_id": 32937, + "default_title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "cjk_title": "この素晴らしい世界に祝福を! 2", + "chinese_titles": [ + { + "title": "為美好的世界獻上祝福!2", + "source": "Wikidata", + "url": "https://www.wikidata.org/wiki/Q112171596", + "confidence": "high" + }, + { + "title": "為美好的世界獻上祝福!", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/為美好的世界獻上祝福!", + "confidence": "medium" + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "이 멋진 세계에 축복을! 2", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/이_멋진_세계에_축복을!", + "confidence": "high" + }, + { + "title": "이 멋진 세계에 축복을!", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/이_멋진_세계에_축복을!", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Mainland China, Hong Kong/Macau, or Taiwan regional title was found for season 2 specifically." + ] + }, + { + "sample_index": 74, + "mal_id": 28121, + "default_title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "cjk_title": "ダンジョンに出会いを求めるのは間違っているだろうか", + "chinese_titles": [ + { + "title": "在地下城尋求邂逅是否搞錯了什麼", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/在地下城尋求邂逅是否搞錯了什麼", + "confidence": "high" + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [ + { + "title": "在地下城尋求邂逅是否搞錯了什麼", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/在地下城尋求邂逅是否搞錯了什麼", + "confidence": "high", + "note": "The page lists Taiwan/Hong Kong publishing under this title." + } + ], + "chinese_titles_tw": [ + { + "title": "在地下城尋求邂逅是否搞錯了什麼", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/在地下城尋求邂逅是否搞錯了什麼", + "confidence": "high", + "note": "The page lists Taiwan/Hong Kong publishing under this title." + } + ], + "korean_titles": [ + { + "title": "던전에서 만남을 추구하면 안 되는 걸까", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/던전에서_만남을_추구하면_안_되는_걸까", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Mainland China regional title was found." + ] + }, + { + "sample_index": 75, + "mal_id": 37430, + "default_title": "Tensei shitara Slime Datta Ken", + "cjk_title": "転生したらスライムだった件", + "chinese_titles": [ + { + "title": "關於我轉生變成史萊姆這檔事", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/關於我轉生變成史萊姆這檔事", + "confidence": "high" + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "전생했더니 슬라임이었던 건에 대하여", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/전생했더니_슬라임이었던_건에_대하여", + "confidence": "high" + } + ], + "notes": [ + "Chinese sources found do not distinguish Mainland China, Hong Kong/Macau, or Taiwan title variants." + ] + }, + { + "sample_index": 76, + "mal_id": 42897, + "default_title": "Horimiya", + "cjk_title": "ホリミヤ", + "chinese_titles": [ + { + "title": "堀與宮村", + "source": "Wikidata", + "url": "https://www.wikidata.org/wiki/Q104815263", + "confidence": "high" + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "호리미야", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/호리미야", + "confidence": "high" + } + ], + "notes": [ + "Chinese sources found do not distinguish Mainland China, Hong Kong/Macau, or Taiwan title variants." + ] + }, + { + "sample_index": 77, + "mal_id": 34933, + "default_title": "Kakegurui", + "cjk_title": "賭ケグルイ", + "chinese_titles": [ + { + "title": "狂賭之淵", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/狂賭之淵", + "confidence": "high" + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "카케구루이", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/카케구루이", + "confidence": "high" + } + ], + "notes": [ + "Chinese sources found do not distinguish Mainland China, Hong Kong/Macau, or Taiwan title variants." + ] + }, + { + "sample_index": 78, + "mal_id": 226, + "default_title": "Elfen Lied", + "cjk_title": "エルフェンリート", + "chinese_titles": [ + { + "title": "妖精的旋律", + "source": "Wikidata", + "url": "https://www.wikidata.org/wiki/Q1328446", + "confidence": "high" + }, + { + "title": "妖精的旋律", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/妖精的旋律", + "confidence": "high" + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "엘펜리트", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/엘펜리트", + "confidence": "high" + } + ], + "notes": [ + "Chinese sources found do not distinguish Mainland China, Hong Kong/Macau, or Taiwan title variants." + ] + }, + { + "sample_index": 79, + "mal_id": 8074, + "default_title": "Highschool of the Dead", + "cjk_title": "学園黙示録 HIGHSCHOOL OF THE DEAD", + "chinese_titles": [ + { + "title": "學園默示錄", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/學園默示錄", + "confidence": "high" + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "학원묵시록 HIGHSCHOOL OF THE DEAD", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/학원묵시록_HIGHSCHOOL_OF_THE_DEAD", + "confidence": "high" + }, + { + "title": "학원묵시록", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/학원묵시록_HIGHSCHOOL_OF_THE_DEAD", + "confidence": "medium" + } + ], + "notes": [ + "Chinese sources found do not distinguish Mainland China, Hong Kong/Macau, or Taiwan title variants." + ] + }, + { + "sample_index": 80, + "mal_id": 10087, + "default_title": "Fate/Zero", + "cjk_title": "フェイト/ゼロ", + "chinese_titles": [ + { + "title": "Fate/Zero", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/Fate/Zero", + "confidence": "high" + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "Fate/Zero", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/Fate/Zero", + "confidence": "high" + } + ], + "notes": [ + "Chinese sources found do not distinguish Mainland China, Hong Kong/Macau, or Taiwan title variants." + ] + } + ] +} diff --git a/tools/search_eval/samples/title_enrichment_shard_05.json b/tools/search_eval/samples/title_enrichment_shard_05.json new file mode 100644 index 0000000..ff9a281 --- /dev/null +++ b/tools/search_eval/samples/title_enrichment_shard_05.json @@ -0,0 +1,1293 @@ +{ + "shard": "05", + "range": [ + 81, + 100 + ], + "items": [ + { + "sample_index": 81, + "mal_id": 39535, + "default_title": "Mushoku Tensei: Isekai Ittara Honki Dasu", + "cjk_title": "無職転生 ~異世界行ったら本気だす~", + "chinese_titles": [ + { + "title": "无职转生:到了异世界就拿出真本事", + "source": "iQIYI", + "url": "https://www.iq.com/play/2byvpq52pk8", + "confidence": "medium", + "note": "Simplified Chinese streaming title." + }, + { + "title": "無職轉生~到了異世界就拿出真本事~", + "source": "Bilibili Hong Kong/Macau/Taiwan", + "url": "https://www.bilibili.com/bangumi/play/ss37762", + "confidence": "high", + "note": "Regional Bilibili page marked for Hong Kong, Macau, and Taiwan." + }, + { + "title": "無職轉生,到了異世界就拿出真本事", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=20620", + "confidence": "high", + "note": "Taiwan streaming title." + }, + { + "title": "無職轉生~到了異世界就拿出真本事~第一季", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q111549837", + "confidence": "high", + "note": "Taiwan label for season 1." + } + ], + "chinese_titles_cn": [ + { + "title": "无职转生:到了异世界就拿出真本事", + "source": "iQIYI", + "url": "https://www.iq.com/play/2byvpq52pk8", + "confidence": "medium", + "note": "Simplified Chinese streaming title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "無職轉生~到了異世界就拿出真本事~", + "source": "Bilibili Hong Kong/Macau/Taiwan", + "url": "https://www.bilibili.com/bangumi/play/ss37762", + "confidence": "high", + "note": "Regional Bilibili page marked for Hong Kong, Macau, and Taiwan." + } + ], + "chinese_titles_tw": [ + { + "title": "無職轉生,到了異世界就拿出真本事", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=20620", + "confidence": "high", + "note": "Taiwan streaming title." + }, + { + "title": "無職轉生~到了異世界就拿出真本事~第一季", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q111549837", + "confidence": "high", + "note": "Taiwan label for season 1." + } + ], + "korean_titles": [ + { + "title": "무직전생 ~이세계에 갔으면 최선을 다한다~", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q111549837", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 82, + "mal_id": 30654, + "default_title": "Ansatsu Kyoushitsu 2nd Season", + "cjk_title": "暗殺教室 第2期", + "chinese_titles": [ + { + "title": "暗杀教室 第二季", + "source": "Bangumi", + "url": "https://bangumi.tv/subject/131891", + "confidence": "medium", + "note": "Simplified Chinese database title." + }, + { + "title": "暗殺教室 第二季", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=33650", + "confidence": "high", + "note": "Taiwan streaming title." + } + ], + "chinese_titles_cn": [ + { + "title": "暗杀教室 第二季", + "source": "Bangumi", + "url": "https://bangumi.tv/subject/131891", + "confidence": "medium", + "note": "Simplified Chinese database title." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "暗殺教室 第二季", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=33650", + "confidence": "high", + "note": "Taiwan streaming title." + } + ], + "korean_titles": [ + { + "title": "암살교실 2기", + "source": "WatchaPedia", + "url": "https://pedia.watcha.com/ko-KR/contents/tRWB4OE", + "confidence": "high" + } + ], + "notes": [ + "No real Hong Kong/Macau-specific Chinese title was found for the second season." + ] + }, + { + "sample_index": 83, + "mal_id": 14813, + "default_title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru.", + "cjk_title": "やはり俺の青春ラブコメはまちがっている。", + "chinese_titles": [ + { + "title": "我的青春恋爱物语果然有问题。", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ss1539", + "confidence": "high", + "note": "Mainland China streaming title." + }, + { + "title": "果然我的青春戀愛喜劇搞錯了。", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=16396", + "confidence": "high", + "note": "Taiwan streaming title for the anime series." + }, + { + "title": "果然我的青春戀愛喜劇搞錯了。", + "source": "ANIHK", + "url": "https://anihk.com/anime/my-teen-romantic-comedy-snafu", + "confidence": "medium", + "note": "Hong Kong anime database title." + } + ], + "chinese_titles_cn": [ + { + "title": "我的青春恋爱物语果然有问题。", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ss1539", + "confidence": "high", + "note": "Mainland China streaming title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "果然我的青春戀愛喜劇搞錯了。", + "source": "ANIHK", + "url": "https://anihk.com/anime/my-teen-romantic-comedy-snafu", + "confidence": "medium", + "note": "Hong Kong anime database title." + } + ], + "chinese_titles_tw": [ + { + "title": "果然我的青春戀愛喜劇搞錯了。", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=16396", + "confidence": "high", + "note": "Taiwan streaming title for the anime series." + } + ], + "korean_titles": [ + { + "title": "역시 내 청춘 러브코메디는 잘못됐다.", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/역시_내_청춘_러브코메디는_잘못됐다.", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 84, + "mal_id": 28891, + "default_title": "Haikyuu!! Second Season", + "cjk_title": "ハイキュー!! セカンドシーズン", + "chinese_titles": [ + { + "title": "排球少年 第二季", + "source": "Anibase", + "url": "https://anibase.net/en/anime/lyK81/HAIKYU%21%21-2nd-Season", + "confidence": "medium", + "note": "Chinese database title." + }, + { + "title": "排球少年!!第二季", + "source": "Bahamut ACG", + "url": "https://acg.gamer.com.tw/acgDetail.php?s=74666", + "confidence": "high", + "note": "Taiwan anime database title." + }, + { + "title": "排球少年!!Second Season", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/排球少年!!_(動畫)", + "confidence": "high", + "note": "Chinese Wikipedia anime season title." + } + ], + "chinese_titles_cn": [ + { + "title": "排球少年 第二季", + "source": "Anibase", + "url": "https://anibase.net/en/anime/lyK81/HAIKYU%21%21-2nd-Season", + "confidence": "medium", + "note": "Chinese database title." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "排球少年!!第二季", + "source": "Bahamut ACG", + "url": "https://acg.gamer.com.tw/acgDetail.php?s=74666", + "confidence": "high", + "note": "Taiwan anime database title." + }, + { + "title": "排球少年!!Second Season", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/排球少年!!_(動畫)", + "confidence": "high", + "note": "Chinese Wikipedia anime season title." + } + ], + "korean_titles": [ + { + "title": "하이큐!! 세컨드 시즌", + "source": "WatchaPedia", + "url": "https://pedia.watcha.com/ko-KR/contents/tEg8pmR", + "confidence": "high" + } + ], + "notes": [ + "No real Hong Kong/Macau-specific Chinese title was found for the second season." + ] + }, + { + "sample_index": 85, + "mal_id": 48583, + "default_title": "Shingeki no Kyojin: The Final Season Part 2", + "cjk_title": "進撃の巨人 The Final Season Part 2", + "chinese_titles": [ + { + "title": "进击的巨人 最终季 Part.2", + "source": "Anibase", + "url": "https://anibase.net/en/anime/1qLMm/Attack-on-Titan-Final-Season-Part-2", + "confidence": "medium", + "note": "Simplified Chinese database title." + }, + { + "title": "進擊的巨人 The Final Season Part 2", + "source": "Bilibili Hong Kong/Macau/Taiwan", + "url": "https://www.bilibili.com/bangumi/play/ss40713", + "confidence": "high", + "note": "Regional Bilibili page marked for Hong Kong, Macau, and Taiwan." + }, + { + "title": "進擊的巨人 第四季:The Final Season Part 2", + "source": "YourAnimes", + "url": "https://youranimes.tw/animes/2143/onair", + "confidence": "medium", + "note": "Taiwan anime broadcast listing." + } + ], + "chinese_titles_cn": [ + { + "title": "进击的巨人 最终季 Part.2", + "source": "Anibase", + "url": "https://anibase.net/en/anime/1qLMm/Attack-on-Titan-Final-Season-Part-2", + "confidence": "medium", + "note": "Simplified Chinese database title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "進擊的巨人 The Final Season Part 2", + "source": "Bilibili Hong Kong/Macau/Taiwan", + "url": "https://www.bilibili.com/bangumi/play/ss40713", + "confidence": "high", + "note": "Regional Bilibili page marked for Hong Kong, Macau, and Taiwan." + } + ], + "chinese_titles_tw": [ + { + "title": "進擊的巨人 The Final Season Part 2", + "source": "Bilibili Hong Kong/Macau/Taiwan", + "url": "https://www.bilibili.com/bangumi/play/ss40713", + "confidence": "high", + "note": "Regional Bilibili page marked for Hong Kong, Macau, and Taiwan." + }, + { + "title": "進擊的巨人 第四季:The Final Season Part 2", + "source": "YourAnimes", + "url": "https://youranimes.tw/animes/2143/onair", + "confidence": "medium", + "note": "Taiwan anime broadcast listing." + } + ], + "korean_titles": [ + { + "title": "진격의 거인 더 파이널 시즌 파트 2", + "source": "Anibase", + "url": "https://anibase.net/en/anime/1qLMm/Attack-on-Titan-Final-Season-Part-2", + "confidence": "medium" + }, + { + "title": "진격의 거인: 파이널 시즌 파트 2", + "source": "Hypebeast Korea", + "url": "https://hypebeast.kr/2021/6/attack-on-titan-the-final-season-part-2-first-teaser-info", + "confidence": "medium" + } + ], + "notes": [] + }, + { + "sample_index": 86, + "mal_id": 121, + "default_title": "Fullmetal Alchemist", + "cjk_title": "鋼の錬金術師", + "chinese_titles": [ + { + "title": "钢之炼金术师", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q711257", + "confidence": "high" + }, + { + "title": "鋼之鍊金術師", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鋼之鍊金術師_(動畫)", + "confidence": "high" + }, + { + "title": "鋼之鍊金術師", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q711257", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "钢之炼金术师", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q711257", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "鋼之鍊金術師", + "source": "Wikidata zh-hk label", + "url": "https://www.wikidata.org/wiki/Q711257", + "confidence": "high" + } + ], + "chinese_titles_tw": [ + { + "title": "鋼之鍊金術師", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/鋼之鍊金術師_(動畫)", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "강철의 연금술사", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q711257", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 87, + "mal_id": 30503, + "default_title": "Noragami Aragoto", + "cjk_title": "ノラガミ ARAGOTO", + "chinese_titles": [ + { + "title": "野良神 ARAGOTO", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/流浪神差", + "confidence": "high", + "note": "Mainland China title for season 2." + }, + { + "title": "流浪神差II", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/流浪神差", + "confidence": "high", + "note": "Hong Kong title for season 2." + }, + { + "title": "流浪神差 ARAGOTO", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/流浪神差", + "confidence": "high", + "note": "Taiwan title for season 2." + } + ], + "chinese_titles_cn": [ + { + "title": "野良神 ARAGOTO", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/流浪神差", + "confidence": "high", + "note": "Mainland China title for season 2." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "流浪神差II", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/流浪神差", + "confidence": "high", + "note": "Hong Kong title for season 2." + } + ], + "chinese_titles_tw": [ + { + "title": "流浪神差 ARAGOTO", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/流浪神差", + "confidence": "high", + "note": "Taiwan title for season 2." + } + ], + "korean_titles": [ + { + "title": "노라가미 ARAGOTO", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q120119784", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 88, + "mal_id": 31478, + "default_title": "Bungou Stray Dogs", + "cjk_title": "文豪ストレイドッグス", + "chinese_titles": [ + { + "title": "文豪野犬", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/文豪Stray_Dogs", + "confidence": "high", + "note": "Mainland China title." + }, + { + "title": "文豪Stray Dogs", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/文豪Stray_Dogs", + "confidence": "high", + "note": "Taiwan title; Hong Kong publisher also listed under the same title." + } + ], + "chinese_titles_cn": [ + { + "title": "文豪野犬", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/文豪Stray_Dogs", + "confidence": "high", + "note": "Mainland China title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "文豪Stray Dogs", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/文豪Stray_Dogs", + "confidence": "medium", + "note": "Hong Kong publisher listed with Taiwan Kadokawa title." + } + ], + "chinese_titles_tw": [ + { + "title": "文豪Stray Dogs", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/文豪Stray_Dogs", + "confidence": "high", + "note": "Taiwan title." + } + ], + "korean_titles": [ + { + "title": "문호 스트레이 독스", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q64028322", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 89, + "mal_id": 34599, + "default_title": "Made in Abyss", + "cjk_title": "メイドインアビス", + "chinese_titles": [ + { + "title": "来自深渊", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ss34543", + "confidence": "medium", + "note": "Simplified Chinese title appears on a related official movie page." + }, + { + "title": "來自深淵", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/來自深淵_(動畫)", + "confidence": "high" + }, + { + "title": "來自深淵", + "source": "Flixboss Hong Kong Netflix listing", + "url": "https://hk.flixboss.com/series/made-in-abyss-80193163", + "confidence": "medium", + "note": "Hong Kong Netflix-region listing." + } + ], + "chinese_titles_cn": [ + { + "title": "来自深渊", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ss34543", + "confidence": "medium", + "note": "Simplified Chinese title appears on a related official movie page." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "來自深淵", + "source": "Flixboss Hong Kong Netflix listing", + "url": "https://hk.flixboss.com/series/made-in-abyss-80193163", + "confidence": "medium", + "note": "Hong Kong Netflix-region listing." + } + ], + "chinese_titles_tw": [ + { + "title": "來自深淵", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q61853333", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "메이드 인 어비스", + "source": "Apple TV Korea", + "url": "https://tv.apple.com/kr/show/메이드-인-어비스/umc.cmc.6uks2o76ygoq8na988wo4ehx4", + "confidence": "high" + }, + { + "title": "메이드 인 어비스", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q61853333", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 90, + "mal_id": 38671, + "default_title": "Enen no Shouboutai", + "cjk_title": "炎炎ノ消防隊", + "chinese_titles": [ + { + "title": "炎炎消防队", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ep330405", + "confidence": "high", + "note": "Mainland China streaming title for the series." + }, + { + "title": "炎炎消防隊", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=29922", + "confidence": "high", + "note": "Taiwan streaming title." + }, + { + "title": "炎炎消防隊", + "source": "ANIHK", + "url": "https://anihk.com/anime/fire-force", + "confidence": "medium", + "note": "Hong Kong anime database title." + } + ], + "chinese_titles_cn": [ + { + "title": "炎炎消防队", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ep330405", + "confidence": "high", + "note": "Mainland China streaming title for the series." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "炎炎消防隊", + "source": "ANIHK", + "url": "https://anihk.com/anime/fire-force", + "confidence": "medium", + "note": "Hong Kong anime database title." + } + ], + "chinese_titles_tw": [ + { + "title": "炎炎消防隊", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=29922", + "confidence": "high", + "note": "Taiwan streaming title." + } + ], + "korean_titles": [ + { + "title": "불꽃 소방대", + "source": "NamuWiki", + "url": "https://namu.moe/w/불꽃%20소방대", + "confidence": "medium", + "note": "Korean page title; the page records 염염의 소방대 as a redirect." + }, + { + "title": "염염의 소방대", + "source": "NamuWiki redirect", + "url": "https://namu.moe/w/불꽃%20소방대?from=염염의%20소방대", + "confidence": "medium", + "note": "Recorded redirect/alternate Korean title." + } + ], + "notes": [] + }, + { + "sample_index": 91, + "mal_id": 11617, + "default_title": "High School DxD", + "cjk_title": "ハイスクールD×D", + "chinese_titles": [ + { + "title": "恶魔高校D×D", + "source": "Chinese Wikipedia converted title", + "url": "https://zh.wikipedia.org/wiki/惡魔高校D×D", + "confidence": "medium", + "note": "Simplified Chinese conversion of the Chinese Wikipedia title." + }, + { + "title": "惡魔高校D×D", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/惡魔高校D×D", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "恶魔高校D×D", + "source": "Chinese Wikipedia converted title", + "url": "https://zh.wikipedia.org/wiki/惡魔高校D×D", + "confidence": "medium", + "note": "Simplified Chinese conversion of the Chinese Wikipedia title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "惡魔高校D×D", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/惡魔高校D×D", + "confidence": "high", + "note": "Chinese Wikipedia lists Taiwan and Hong Kong publisher distribution under this title." + } + ], + "chinese_titles_tw": [ + { + "title": "惡魔高校D×D", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/惡魔高校D×D", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "하이스쿨 DxD", + "source": "WatchaPedia", + "url": "https://pedia.watcha.com/ko-KR/contents/tRzZDkR", + "confidence": "high" + }, + { + "title": "하이스쿨 D×D", + "source": "NamuWiki", + "url": "https://namu.moe/w/하이스쿨%20D×D", + "confidence": "medium" + } + ], + "notes": [] + }, + { + "sample_index": 92, + "mal_id": 40591, + "default_title": "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", + "cjk_title": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "chinese_titles": [ + { + "title": "辉夜大小姐想让我告白?~天才们的恋爱头脑战~", + "source": "Chinese Wikipedia regional title block", + "url": "https://zh.wikipedia.org/wiki/輝夜姬想讓人告白~天才們的戀愛頭腦戰~_(動畫)", + "confidence": "high", + "note": "Mainland China title for season 2." + }, + { + "title": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", + "source": "Chinese Wikipedia regional title block", + "url": "https://zh.wikipedia.org/wiki/輝夜姬想讓人告白~天才們的戀愛頭腦戰~_(動畫)", + "confidence": "high", + "note": "Taiwan, Hong Kong, and Macau title for season 2." + } + ], + "chinese_titles_cn": [ + { + "title": "辉夜大小姐想让我告白?~天才们的恋爱头脑战~", + "source": "Chinese Wikipedia regional title block", + "url": "https://zh.wikipedia.org/wiki/輝夜姬想讓人告白~天才們的戀愛頭腦戰~_(動畫)", + "confidence": "high", + "note": "Mainland China title for season 2." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", + "source": "Chinese Wikipedia regional title block", + "url": "https://zh.wikipedia.org/wiki/輝夜姬想讓人告白~天才們的戀愛頭腦戰~_(動畫)", + "confidence": "high", + "note": "Hong Kong and Macau title for season 2." + } + ], + "chinese_titles_tw": [ + { + "title": "輝夜姬想讓人告白?~天才們的戀愛頭腦戰~", + "source": "Chinese Wikipedia regional title block", + "url": "https://zh.wikipedia.org/wiki/輝夜姬想讓人告白~天才們的戀愛頭腦戰~_(動畫)", + "confidence": "high", + "note": "Taiwan title for season 2." + } + ], + "korean_titles": [ + { + "title": "카구야 님은 고백받고 싶어 2기", + "source": "KakaoTV", + "url": "https://tv.kakao.com/v/408679381", + "confidence": "medium", + "note": "Korean title with season marker appears in a Korean video listing." + }, + { + "title": "카구야 님은 고백받고 싶어 ~천재들의 연애 두뇌전~", + "source": "WatchaPedia", + "url": "https://pedia.watcha.com/ko-KR/contents/tlYeZO4", + "confidence": "high", + "note": "Korean series title." + } + ], + "notes": [] + }, + { + "sample_index": 93, + "mal_id": 5081, + "default_title": "Bakemonogatari", + "cjk_title": "化物語", + "chinese_titles": [ + { + "title": "化物语", + "source": "Chinese Wikipedia converted title", + "url": "https://zh.wikipedia.org/wiki/化物語", + "confidence": "medium", + "note": "Simplified Chinese conversion of the shared title." + }, + { + "title": "化物語", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q124309985", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "化物语", + "source": "Chinese Wikipedia converted title", + "url": "https://zh.wikipedia.org/wiki/化物語", + "confidence": "medium", + "note": "Simplified Chinese conversion of the shared title." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "化物語", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q124309985", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "바케모노가타리", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q124309985", + "confidence": "high" + }, + { + "title": "괴물 이야기", + "source": "Wikidata ko alt label", + "url": "https://www.wikidata.org/wiki/Q124309985", + "confidence": "medium" + } + ], + "notes": [ + "No real Hong Kong/Macau-specific Chinese title was found." + ] + }, + { + "sample_index": 94, + "mal_id": 6746, + "default_title": "Durarara!!", + "cjk_title": "デュラララ!!", + "chinese_titles": [ + { + "title": "无头骑士异闻录", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ss1656", + "confidence": "high", + "note": "Mainland China streaming title." + }, + { + "title": "無頭騎士異聞錄 DuRaRaRa!!", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/無頭騎士異聞錄_DuRaRaRa!!", + "confidence": "high" + }, + { + "title": "無頭騎士異聞錄 DuRaRaRa!!", + "source": "Rakuten Kobo Hong Kong", + "url": "https://www.kobo.com/hk/en/ebook/durarara-6", + "confidence": "medium", + "note": "Hong Kong ebook storefront title for the same franchise." + } + ], + "chinese_titles_cn": [ + { + "title": "无头骑士异闻录", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ss1656", + "confidence": "high", + "note": "Mainland China streaming title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "無頭騎士異聞錄 DuRaRaRa!!", + "source": "Rakuten Kobo Hong Kong", + "url": "https://www.kobo.com/hk/en/ebook/durarara-6", + "confidence": "medium", + "note": "Hong Kong ebook storefront title for the same franchise." + } + ], + "chinese_titles_tw": [ + { + "title": "無頭騎士異聞錄 DuRaRaRa!!", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/無頭騎士異聞錄_DuRaRaRa!!", + "confidence": "high" + }, + { + "title": "無頭騎士異聞錄 DuRaRaRa!!", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=4616", + "confidence": "medium", + "note": "Bahamut page for a later anime installment uses the franchise title." + } + ], + "korean_titles": [ + { + "title": "듀라라라!!", + "source": "NamuWiki", + "url": "https://namu.moe/w/듀라라라!!", + "confidence": "medium" + }, + { + "title": "듀라라라!!", + "source": "Watcha", + "url": "https://watcha.com/ko-KR/contents/tEK11kP", + "confidence": "medium", + "note": "Watcha page for a later anime installment uses the franchise title." + } + ], + "notes": [] + }, + { + "sample_index": 95, + "mal_id": 431, + "default_title": "Howl no Ugoku Shiro", + "cjk_title": "ハウルの動く城", + "chinese_titles": [ + { + "title": "哈尔的移动城堡", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "high" + }, + { + "title": "哈爾移動城堡", + "source": "Wikidata zh-hk and zh-mo labels", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "high" + }, + { + "title": "霍爾的移動城堡", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "哈尔的移动城堡", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "哈爾移動城堡", + "source": "Wikidata zh-hk and zh-mo labels", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "high" + } + ], + "chinese_titles_tw": [ + { + "title": "霍爾的移動城堡", + "source": "Wikidata zh-tw label", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "하울의 움직이는 성", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q29011", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 96, + "mal_id": 12189, + "default_title": "Hyouka", + "cjk_title": "氷菓", + "chinese_titles": [ + { + "title": "冰菓", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ep84779", + "confidence": "high", + "note": "Mainland China streaming title." + }, + { + "title": "冰菓", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=100", + "confidence": "high", + "note": "Taiwan streaming title." + } + ], + "chinese_titles_cn": [ + { + "title": "冰菓", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ep84779", + "confidence": "high", + "note": "Mainland China streaming title." + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "冰菓", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=100", + "confidence": "high", + "note": "Taiwan streaming title." + } + ], + "korean_titles": [ + { + "title": "빙과", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q99853668", + "confidence": "high" + }, + { + "title": "빙과", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/빙과_(애니메이션)", + "confidence": "high" + } + ], + "notes": [ + "No real Hong Kong/Macau-specific Chinese title was found." + ] + }, + { + "sample_index": 97, + "mal_id": 35507, + "default_title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "cjk_title": "ようこそ実力至上主義の教室へ", + "chinese_titles": [ + { + "title": "欢迎来到实力至上主义的教室", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ep113358", + "confidence": "high", + "note": "Mainland China streaming title." + }, + { + "title": "歡迎來到實力至上主義的教室", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=8542", + "confidence": "high", + "note": "Taiwan streaming title." + }, + { + "title": "歡迎來到實力至上主義的教室", + "source": "ANIHK", + "url": "https://anihk.com/anime/classroom-of-the-elite", + "confidence": "medium", + "note": "Hong Kong anime database title." + } + ], + "chinese_titles_cn": [ + { + "title": "欢迎来到实力至上主义的教室", + "source": "Bilibili", + "url": "https://www.bilibili.com/bangumi/play/ep113358", + "confidence": "high", + "note": "Mainland China streaming title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "歡迎來到實力至上主義的教室", + "source": "ANIHK", + "url": "https://anihk.com/anime/classroom-of-the-elite", + "confidence": "medium", + "note": "Hong Kong anime database title." + } + ], + "chinese_titles_tw": [ + { + "title": "歡迎來到實力至上主義的教室", + "source": "Bahamut Anime", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=8542", + "confidence": "high", + "note": "Taiwan streaming title." + } + ], + "korean_titles": [ + { + "title": "어서 오세요 실력 지상주의 교실에", + "source": "Apple TV Korea", + "url": "https://tv.apple.com/kr/show/어서-오세요-실력-지상주의-교실에/umc.cmc.514ygmczvweqazs5ppmftdyle", + "confidence": "high" + }, + { + "title": "어서 오세요 실력지상주의 교실에", + "source": "Yes24", + "url": "https://www.yes24.com/product/goods/147562279", + "confidence": "high", + "note": "Korean book title for the source franchise." + } + ], + "notes": [] + }, + { + "sample_index": 98, + "mal_id": 14741, + "default_title": "Chuunibyou demo Koi ga Shitai!", + "cjk_title": "中二病でも恋がしたい!", + "chinese_titles": [ + { + "title": "中二病也要谈恋爱", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/中二病也想談戀愛!_(動畫)", + "confidence": "high", + "note": "Mainland China title." + }, + { + "title": "中二病也想談戀愛!", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/中二病也想談戀愛!_(動畫)", + "confidence": "high", + "note": "Hong Kong and Taiwan title." + } + ], + "chinese_titles_cn": [ + { + "title": "中二病也要谈恋爱", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/中二病也想談戀愛!_(動畫)", + "confidence": "high", + "note": "Mainland China title." + } + ], + "chinese_titles_hk_mo": [ + { + "title": "中二病也想談戀愛!", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/中二病也想談戀愛!_(動畫)", + "confidence": "high", + "note": "Hong Kong title." + } + ], + "chinese_titles_tw": [ + { + "title": "中二病也想談戀愛!", + "source": "Chinese Wikipedia regional conversion table", + "url": "https://zh.wikipedia.org/wiki/中二病也想談戀愛!_(動畫)", + "confidence": "high", + "note": "Taiwan title." + } + ], + "korean_titles": [ + { + "title": "중2병이라도 사랑이 하고 싶어!", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/중2병이라도_사랑이_하고_싶어!", + "confidence": "medium" + } + ], + "notes": [] + }, + { + "sample_index": 99, + "mal_id": 26243, + "default_title": "Owari no Seraph", + "cjk_title": "終わりのセラフ", + "chinese_titles": [ + { + "title": "终结的炽天使", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q64711220", + "confidence": "high" + }, + { + "title": "終結的熾天使", + "source": "Wikidata zh-hant label", + "url": "https://www.wikidata.org/wiki/Q64711220", + "confidence": "high" + }, + { + "title": "終結的熾天使", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/終結的熾天使", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "终结的炽天使", + "source": "Wikidata zh-hans label", + "url": "https://www.wikidata.org/wiki/Q64711220", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "終結的熾天使", + "source": "Wikidata zh-hant label", + "url": "https://www.wikidata.org/wiki/Q64711220", + "confidence": "medium", + "note": "Traditional Chinese title; no Hong Kong/Macau-only variant found." + } + ], + "chinese_titles_tw": [ + { + "title": "終結的熾天使", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/終結的熾天使", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "종말의 세라프", + "source": "Wikidata ko label", + "url": "https://www.wikidata.org/wiki/Q64711220", + "confidence": "high" + } + ], + "notes": [ + "No Hong Kong/Macau-only Chinese title was found; the traditional Chinese title is recorded instead." + ] + }, + { + "sample_index": 100, + "mal_id": 52991, + "default_title": "Sousou no Frieren", + "cjk_title": "葬送のフリーレン", + "chinese_titles": [ + { + "title": "葬送的芙莉蓮", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/葬送的芙莉蓮_(動畫)", + "confidence": "high" + }, + { + "title": "葬送的芙莉蓮", + "source": "Wikidata zh label", + "url": "https://www.wikidata.org/wiki/Q130377145", + "confidence": "high" + } + ], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [ + { + "title": "葬送的芙莉蓮", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/葬送的芙莉蓮_(動畫)", + "confidence": "medium", + "note": "Chinese Wikipedia records Hong Kong television airing but does not distinguish a Hong Kong-only title." + } + ], + "chinese_titles_tw": [ + { + "title": "葬送的芙莉蓮", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/葬送的芙莉蓮_(動畫)", + "confidence": "high", + "note": "Chinese Wikipedia records Taiwan television airing under this title." + } + ], + "korean_titles": [ + { + "title": "장송의 프리렌", + "source": "Korean Wikipedia", + "url": "https://ko.wikipedia.org/wiki/장송의_프리렌", + "confidence": "high" + } + ], + "notes": [ + "No source-backed Mainland China regional title was found." + ] + } + ] +} diff --git a/tools/search_eval/samples/title_enrichment_shard_manual.json b/tools/search_eval/samples/title_enrichment_shard_manual.json new file mode 100644 index 0000000..31cd470 --- /dev/null +++ b/tools/search_eval/samples/title_enrichment_shard_manual.json @@ -0,0 +1,327 @@ +{ + "shard": "manual", + "range": [ + 1, + 100 + ], + "items": [ + { + "sample_index": 23, + "mal_id": 36456, + "default_title": "Boku no Hero Academia 3rd Season", + "cjk_title": "僕のヒーローアカデミア", + "chinese_titles": [], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "나의 히어로 아카데미아 3기", + "source": "Kinolights", + "url": "https://m.kinolights.com/title/84843", + "confidence": "high" + }, + { + "title": "나의 히어로 아카데미아 3기", + "source": "Daum News / Animax Korea report", + "url": "https://v.daum.net/v/obsQ17ZuWo?f=p", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 28, + "mal_id": 40028, + "default_title": "Shingeki no Kyojin: The Final Season", + "cjk_title": "進撃の巨人 The Final Season", + "chinese_titles": [ + { + "title": "进击的巨人 最终季", + "source": "LAFTEL zh-Hans", + "url": "https://laftel.tv/zh-Hans/series/9/19", + "confidence": "high" + }, + { + "title": "進擊的巨人 The Final Season", + "source": "Bahamut Anime Crazy", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=20675", + "confidence": "high" + }, + { + "title": "進擊的巨人Final Season", + "source": "MyVideo Taiwan", + "url": "https://www.myvideo.net.tw/details/3/14196", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "进击的巨人 最终季", + "source": "LAFTEL zh-Hans", + "url": "https://laftel.tv/zh-Hans/series/9/19", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "進擊的巨人 The Final Season", + "source": "Bahamut Anime Crazy", + "url": "https://ani.gamer.com.tw/animeVideo.php?sn=20675", + "confidence": "high" + }, + { + "title": "進擊的巨人Final Season", + "source": "MyVideo Taiwan", + "url": "https://www.myvideo.net.tw/details/3/14196", + "confidence": "high" + } + ], + "korean_titles": [], + "notes": [ + "No Hong Kong/Macau-specific title was found in this pass." + ] + }, + { + "sample_index": 38, + "mal_id": 21881, + "default_title": "Sword Art Online II", + "cjk_title": "ソードアート・オンライン II", + "chinese_titles": [], + "chinese_titles_cn": [], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [], + "korean_titles": [ + { + "title": "소드 아트 온라인 II", + "source": "Libre Wiki", + "url": "https://librewiki.net/wiki/%EC%86%8C%EB%93%9C_%EC%95%84%ED%8A%B8_%EC%98%A8%EB%9D%BC%EC%9D%B8_II", + "confidence": "high" + }, + { + "title": "소드 아트 온라인 II", + "source": "Gaon Wiki", + "url": "https://www.gaonwiki.com/w/%EC%86%8C%EB%93%9C_%EC%95%84%ED%8A%B8_%EC%98%A8%EB%9D%BC%EC%9D%B8/%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 77, + "mal_id": 34933, + "default_title": "Kakegurui", + "cjk_title": "賭ケグルイ", + "chinese_titles": [ + { + "title": "狂赌之渊", + "source": "Douban", + "url": "https://movie.douban.com/subject/26977244/", + "confidence": "high" + }, + { + "title": "狂賭之淵", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E7%8B%82%E8%B3%AD%E4%B9%8B%E6%B7%B5", + "confidence": "high" + }, + { + "title": "狂賭之淵", + "source": "DramaQueen Taiwan", + "url": "https://www.dramaqueen.com.tw/tvshow/Kakegurui.html", + "confidence": "high" + }, + { + "title": "狂賭之淵", + "source": "AniHK", + "url": "https://anihk.com/anime/kakegurui", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "狂赌之渊", + "source": "Douban", + "url": "https://movie.douban.com/subject/26977244/", + "confidence": "high" + }, + { + "title": "狂赌之渊", + "source": "Bangumi tag", + "url": "https://bangumi.tv/anime/tag/%E7%8B%82%E8%B5%8C%E4%B9%8B%E6%B8%8A", + "confidence": "medium" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "狂賭之淵", + "source": "AniHK", + "url": "https://anihk.com/anime/kakegurui", + "confidence": "high" + } + ], + "chinese_titles_tw": [ + { + "title": "狂賭之淵", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E7%8B%82%E8%B3%AD%E4%B9%8B%E6%B7%B5", + "confidence": "high" + }, + { + "title": "狂賭之淵", + "source": "DramaQueen Taiwan", + "url": "https://www.dramaqueen.com.tw/tvshow/Kakegurui.html", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "카케구루이", + "source": "Wikidata", + "url": "https://www.wikidata.org/wiki/Q18700981", + "confidence": "high" + }, + { + "title": "카케구루이", + "source": "Libre Wiki", + "url": "https://librewiki.net/wiki/%EC%B9%B4%EC%BC%80%EA%B5%AC%EB%A3%A8%EC%9D%B4", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 79, + "mal_id": 8074, + "default_title": "Highschool of the Dead", + "cjk_title": "学園黙示録 HIGHSCHOOL OF THE DEAD", + "chinese_titles": [ + { + "title": "学园默示录", + "source": "ComicK", + "url": "https://comick.dev/comic/highschool-of-the-dead-full-color", + "confidence": "medium" + }, + { + "title": "學園默示錄", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%AD%B8%E5%9C%92%E9%BB%98%E7%A4%BA%E9%8C%84", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "学园默示录", + "source": "ComicK", + "url": "https://comick.dev/comic/highschool-of-the-dead-full-color", + "confidence": "medium" + } + ], + "chinese_titles_hk_mo": [ + { + "title": "學園默示錄", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%AD%B8%E5%9C%92%E9%BB%98%E7%A4%BA%E9%8C%84", + "confidence": "medium", + "note": "Traditional Chinese source; no Hong Kong/Macau-only title was found." + } + ], + "chinese_titles_tw": [ + { + "title": "學園默示錄", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/%E5%AD%B8%E5%9C%92%E9%BB%98%E7%A4%BA%E9%8C%84", + "confidence": "high" + }, + { + "title": "學園默示錄", + "source": "AniBase zh-Hant", + "url": "https://anibase.net/zh-hant/anime/4xYgN/%E5%AD%B8%E5%9C%92%E9%BB%98%E7%A4%BA%E9%8C%84", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "학원묵시록 HIGHSCHOOL OF THE DEAD", + "source": "Watcha Pedia", + "url": "https://pedia.watcha.com/ko-JP/contents/tRMX9wE", + "confidence": "high" + }, + { + "title": "학원묵시록", + "source": "AniBase", + "url": "https://anibase.net/en/anime/4xYgN/Highschool-of-the-Dead", + "confidence": "high" + } + ], + "notes": [] + }, + { + "sample_index": 80, + "mal_id": 10087, + "default_title": "Fate/Zero", + "cjk_title": "フェイト/ゼロ", + "chinese_titles": [ + { + "title": "命運/零話", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/Fate/Zero", + "confidence": "high" + }, + { + "title": "命运之零", + "source": "Bangumi", + "url": "https://bangumi.tv/subject/10639", + "confidence": "high" + } + ], + "chinese_titles_cn": [ + { + "title": "命运之零", + "source": "Bangumi", + "url": "https://bangumi.tv/subject/10639", + "confidence": "high" + } + ], + "chinese_titles_hk_mo": [], + "chinese_titles_tw": [ + { + "title": "命運/零話", + "source": "Chinese Wikipedia", + "url": "https://zh.wikipedia.org/wiki/Fate/Zero", + "confidence": "high" + }, + { + "title": "命運/零話", + "source": "Taiwan Dubbing Wiki", + "url": "https://vocustaiwan.fandom.com/zh-tw/wiki/Fate/Zero", + "confidence": "medium" + }, + { + "title": "命運/零話", + "source": "YesAsia Taiwan DVD listing", + "url": "https://www.yesasia.com/us/fate-zero-dvd-vol-4-taiwan-version/1032174632-0-0-0-en/info.html", + "confidence": "high" + } + ], + "korean_titles": [ + { + "title": "페이트/제로", + "source": "Libre Wiki", + "url": "https://librewiki.net/wiki/Fate/Zero", + "confidence": "high" + }, + { + "title": "페이트 / 제로", + "source": "JustWatch Korea", + "url": "https://www.justwatch.com/kr/TV-%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%A8/peiteu-jero", + "confidence": "high" + } + ], + "notes": [ + "No Hong Kong/Macau-specific title was found in this pass." + ] + } + ] +} diff --git a/tools/search_eval/scoring.py b/tools/search_eval/scoring.py new file mode 100644 index 0000000..82dc744 --- /dev/null +++ b/tools/search_eval/scoring.py @@ -0,0 +1,171 @@ +"""Scoring helpers for the search-eval harness. + +A hit is recorded when any returned row's identifier or canonical title +matches the seed's known target. +""" + +from __future__ import annotations + +import re +import unicodedata +from typing import Iterable, List, Optional, Tuple + + +def _norm(text: Optional[str]) -> str: + if not text: + return "" + nfkd = unicodedata.normalize("NFKD", text) + no_accent = "".join(c for c in nfkd if not unicodedata.combining(c)) + return re.sub(r"[^a-z0-9]+", " ", no_accent.lower()).strip() + + +_SEASON_RE = re.compile( + r"\b(?:season|part|cour|movie|ova|ona|special|final|last|theatrical|" + r"\d+(?:st|nd|rd|th)?|i{1,4}|v|x)\b" +) + + +def _has_qualifier(text: str) -> bool: + return bool(_SEASON_RE.search(text)) + + +def _substring_match_allowed(row_norm: str, seed_norm: str) -> bool: + if row_norm == seed_norm: + return True + shorter, longer = sorted((row_norm, seed_norm), key=len) + if len(shorter) < 8: + return False + if shorter not in longer: + return False + remainder = " ".join(longer.replace(shorter, " ", 1).split()) + if _has_qualifier(remainder): + return False + return True + + +def _candidate_ids(row: dict, backend: str) -> List[Tuple[str, object]]: + """Pull plausible IDs from a backend row in dumped JSON form.""" + out: List[Tuple[str, object]] = [] + if not isinstance(row, dict): + return out + if backend in ("jikan", "ann"): + if "mal_id" in row: + out.append(("mal", row["mal_id"])) + out.append(("jikan", row["mal_id"])) + if "id" in row: + out.append((backend, row["id"])) + elif backend == "anilist": + if "id" in row: + out.append(("anilist", row["id"])) + if row.get("idMal"): + out.append(("mal", row["idMal"])) + elif backend == "kitsu": + if "id" in row: + out.append(("kitsu", row["id"])) + attrs = row.get("attributes") or {} + for src in ("myAnimeListId", "myanimelist", "mal_id"): + if attrs.get(src): + out.append(("mal", attrs[src])) + elif backend == "mangadex": + if "id" in row: + out.append(("mangadex", row["id"])) + elif backend == "shikimori": + if "id" in row: + out.append(("shikimori", row["id"])) + else: + if "id" in row: + out.append((backend, row["id"])) + return out + + +def _candidate_titles(row: dict, backend: str) -> List[str]: + out: List[str] = [] + if not isinstance(row, dict): + return out + title = row.get("title") + if isinstance(title, dict): + out.extend(v for v in title.values() if isinstance(v, str)) + elif isinstance(title, str): + out.append(title) + for field in ("name", "english", "native", "romaji", "russian", "japanese", "canonicalName"): + v = row.get(field) + if isinstance(v, str): + out.append(v) + elif isinstance(v, dict): + out.extend(s for s in v.values() if isinstance(s, str)) + titles_list = row.get("titles") + if isinstance(titles_list, list): + for t in titles_list: + if isinstance(t, dict): + s = t.get("title") + if isinstance(s, str): + out.append(s) + attrs = row.get("attributes") + if isinstance(attrs, dict): + for field in ("title", "titles", "canonicalTitle", "name", "canonicalName"): + v = attrs.get(field) + if isinstance(v, str): + out.append(v) + elif isinstance(v, dict): + out.extend(s for s in v.values() if isinstance(s, str)) + elif isinstance(v, list): + for t in v: + if isinstance(t, dict): + s = t.get("title") or t.get("name") + if isinstance(s, str): + out.append(s) + return [s for s in out if s] + + +def _id_match(row_ids: Iterable[Tuple[str, object]], seed_ids: dict) -> bool: + seed_set = {(k, str(v)) for k, v in (seed_ids or {}).items() if v} + if not seed_set: + return False + return any((k, str(v)) in seed_set for k, v in row_ids) + + +def _title_match(row_titles: Iterable[str], seed_aliases: Iterable[str]) -> str: + """Return one of "exact" / "substring" / "" depending on alignment.""" + seed_norm = {_norm(a) for a in seed_aliases if a} + seed_norm.discard("") + if not seed_norm: + return "" + for t in row_titles: + n = _norm(t) + if not n: + continue + if n in seed_norm: + return "exact" + for t in row_titles: + n = _norm(t) + if not n: + continue + for s in seed_norm: + if _substring_match_allowed(n, s): + return "substring" + return "" + + +def score_rows(rows: list, seed: dict, backend: str) -> dict: + """Return ``{"position": int|None, "kind": str}`` where position is 0-indexed top-N rank. + + ``kind`` is one of ``"id"``, ``"title_exact"``, ``"title_substring"``, ``""``. + """ + seed_ids = seed.get("ids") or {} + seed_aliases = seed.get("aliases") or [seed.get("query")] + best_position: Optional[int] = None + best_kind = "" + for i, raw in enumerate(rows): + row = raw.model_dump(mode="json", by_alias=True) if hasattr(raw, "model_dump") else raw + if not isinstance(row, dict): + continue + ids = _candidate_ids(row, backend) + titles = _candidate_titles(row, backend) + if _id_match(ids, seed_ids): + return {"position": i, "kind": "id"} + match = _title_match(titles, seed_aliases) + if match == "exact" and best_kind not in ("id", "title_exact"): + best_position, best_kind = i, "title_exact" + elif match == "substring" and not best_kind: + best_position, best_kind = i, "title_substring" + return {"position": best_position, "kind": best_kind}